How to set align of lines and columns in GtkTreeView

1. create
2. add the columns using
3. use method
4. use method
5. create model
6. add model to the treeview;
7. use
GtkTreeView;
2. add the columns using
GtkTreeViewColumnand what type this will render with
GtkCellRendererText;
3. use method
set_property("xalign", $align);on renderer to set left (0), center (0.5) or right (1) position of
GtkCellRendererText;
4. use method
set_alignment($align);on column to set left (0), center (0.5) or right (1) position of
GtkTreeeViewColumn;
5. create model
GtkListStore, that will store the values;
6. add model to the treeview;
7. use
GtkListStore::appendto add values to model, and the data will appear on treeview;