Class
WebListBoxColumnData
Description
Describes a column from a data source for use with a WebListBox.
Properties
Name |
Type |
Read-Only |
Shared |
---|---|---|---|
Methods
Name |
Parameters |
Returns |
Shared |
---|---|---|---|
Name As String, ColumnName As String, Sortable As Boolean = True, Width As Integer |
|||
Name As String, ColumnName As String, Sortable As Boolean = True |
Property descriptions
WebListBoxColumnData.DatabaseColumnName
DatabaseColumnName As String
The name of the column in the a table in the database from which the data will be fetched.
WebListBoxColumnData.Heading
Heading As String
The name of the column as it should appear in the WebListBox.
WebListBoxColumnData.Sortable
Sortable As Boolean
If true, the column's sort widget will appear allowing the user to sort this column.
WebListBoxColumnData.SortDirection
SortDirection As WebListBox.SortDirections
Indicates if the sort will be ascending or descending.
WebListBoxColumnData.Width
Width As String
Indicates how wide the column should be when it appears in the WebListBox.
Method descriptions
WebListBoxColumnData.Constructor
Constructor(Name As String, ColumnName As String, Sortable As Boolean = True, Width As Integer)
Note
Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.
Creates a new WebListBoxColumnData object with the values passed.
WebListBoxColumnData.Constructor
Constructor(Name As String, ColumnName As String, Sortable As Boolean = True)
Note
Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.
Creates a new WebListBoxColumnData object with the values passed.
Notes
This type is returned by the WebDataSource.ColumnData method of any class that supports the WebDataSource interface.
Compatibility
Web projects on all supported operating systems.
See also
Object parent class; WebListBox control, WebDataSource interface, WebListBoxRowData class.