Page 1 of 1

InsertCol (ListView)

Posted: 16 Feb 2024, 15:53
by flyingDman
Omitting ColumnNumber creates a new column on the right side of existing columns. This option is not addressed and ColumnNumber is currently not reported as an optional parameter. Hence, the red opening square bracket can be moved to the left before ColumnNumber and the text can be amended to:
"If ColumnNumber is omitted or is larger than the number of columns currently in the control, the new column is added next to the last column on the right side."
Example:

Code: Select all

g := gui(), LV := g.add("listview")
LV.insertCol(,,1)
LV.insertCol(,,2)
LV.insertCol(,,3)
LV.ModifyCol()
g.show

Re: InsertCol (ListView)  Topic is solved

Posted: 07 Mar 2024, 08:32
by Ragnar
Thanks for reporting. I've fixed this.

Re: InsertCol (ListView)

Posted: 07 Mar 2024, 11:17
by flyingDman
:thumbup: