Column text alignment

In a web llistbox is there a way to specify text alignment of just one (or selected) column(s)?

The only thing I found was Style, which effect all columns.

ListBox.ColumnAlignment = ListBox.Align… :slight_smile:

Place it in the Open Event of the ListBox f.e.

[quote=173255:@Sascha S]ListBox.ColumnAlignment = ListBox.Align… :slight_smile:

Place it in the Open Event of the ListBox f.e.[/quote]

ListBox.ColumnAlignment(ColumnNumber) = ListBox.Align… :wink:

Don’t think that will work for web?

Damn. I “always” miss the fact that this was posted in the Web Forum.
I am sorry :frowning:

Figured it out, example:

me.ColumnStyle(3)= StyleLBColCenter

Do not find that in the Docs.

WebListBox.ColumnStyle is documented here:

http://documentation.xojo.com/index.php/WebListBox.ColumnStyle

Thanks Paul.