WebListBox.Heading
From Xojo Documentation
Property (As String )
aWebListBox.Heading(Column as Integer) = newStringValue
or
StringValue = aWebListBox.Heading(Column as Integer)
Supported for all project types and targets.
or
StringValue = aWebListBox.Heading(Column as Integer)
Supported for all project types and targets.
Specifies the heading for the specified Column (0-based). Headings appear only if HasHeading is True.
Example
The following sets the first column's heading:
Me.Heading(0) = "Name"