Click or drag to resize

ListView.AddColumn Method (Typed)

X#
Add a new ListViewColumn object to the end of the list view's list of columns.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD AddColumn(
	oListViewColumn AS ListViewColumn
) AS LOGIC
Request Example View Source

Parameters

oListViewColumn
Type: ListViewColumn
The ListViewColumn object to add to the list view.

Return Value

Type: Logic
TRUE if the column was added successfully; otherwise, FALSE.
Examples
X#
1SELF:oDClvPlayers:AddColumn( ListViewColumn{15, HyperLabel{ String2Symbol( "cName" ), "Recipient"}})
See Also