ListView.AddColumn Method (Typed) | |
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
public virtual bool AddColumn(
ListViewColumn oListViewColumn
)
Request Example
View SourceParameters
- 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 1SELF:oDClvPlayers:AddColumn( ListViewColumn{15, HyperLabel{ String2Symbol( "cName" ), "Recipient"}})
See Also