TreeView Xojo plugin

TreeViewNode.ItemText Method

Sets or gets the text for a specific column.

ItemText(
   columnIndex as Integer) as String

ItemText(
   columnIndex as Integer
   assigns value as String)

Parameters

columnIndex
The number of the column to set or get text from. (The first column is number zero)
value (assignment parameter)
When using the setter then text is assigned to the column.

Returns

String
When using the getter then text from the column is returned.

Remarks

The first column is number zero.

The column has to exist on the node to be addressable by this setter/getter function. If the column is not the first column and has not been added with AddSubItem then the getter of this function will return a empty string and the setter will do nothing.

See Also

TreeViewNode Class