RE: [perl-win32-gui-users] Listview Column Alignment

2004-02-06 Thread Chris Wearn
Answered my own question with a bit more digging in listview.xs The current examples have options as per the original email: -index -subitem etc Now however the current listview.xs only lists the following options: -text -align -width -index OR -item -subitem -image This differs again to the d

[perl-win32-gui-users] Listview Column Alignment

2004-02-06 Thread Chris Wearn
Hi All, When creating a ListView and Inserting Columns, how do you set the alignment for the column? -align does not seem to work as expected. $Window->ListView->InsertColumn( -index => 1, -subitem => 1, -width => $width/2, -align => "right", -text=> "Description",