ListView.InsertColumn Method | |
Insert a new ListViewColumn object after a particular column index in the list view.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD InsertColumn(
oListViewColumn,
nInsertAfter
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual InsertColumn(
Usual oListViewColumn = default,
Usual nInsertAfter = default
)
Request Example
View SourceParameters
- oListViewColumn (Optional)
- Type: Usual
The ListViewColumn object to insert in the list view. - nInsertAfter (Optional)
- Type: Usual
The position after which to insert the new column. If omitted, the new column is added to the end of the column list.
Return Value
Type:
Usual
TRUE if the column was inserted successfully; otherwise, FALSE.
See Also