ListColumns.Add
Syntax:
Parameters:
<Column> (required)
Name of list column. Depends on the application object.
<Autodelete> (optional)
Allows you to delete a column if this column was deleted by a table box.
Default value: False.
Returned value:
Description:
Availability:
Example:
// Let's add a column with item code to the // catalog list connected with a table box: List.Columns.Add("Code"); // To display code in the table box, let's insert a column // with index 1 into it, which will display the "Code" column from the // catalog list: Controls.List.Columns.Insert(1,"Code").Value = "Code"; |