Class
WebListBoxTextRenderer
Listbox
Description
Used to display text in a WebListBox cell.
Methods
Name |
Parameters |
Returns |
Shared |
|---|---|---|---|
value As String |
Method descriptions
WebListBoxTextRenderer.Operator_Convert
Operator_Convert As String
Returns the text of the class instance as a String.
Operator_Convert(value As String)
Assigns the value passed to the class instance.
Sample code
This example in the Opening event of a WebListBox adds a row and assigns a WebListBoxTextRenderer to its first cell:
Me.AddRow("")
Var renderer As New WebListBoxTextRenderer
renderer = "Hello, World!"
Me.CellRendererAt(0, 0) = renderer
Compatibility
Project Types |
Web |
Operating Systems |
All |
See also
WebListBoxCellRenderer parent class; WebListBox control; WebListBoxCellRenderer, WebListBoxDateTimeRenderer, WebListBoxImageRenderer, and WebListBoxStyleRenderer classes.