Using the Process Analyst > Process Analyst for Developers > Automation Model > IObjectViewColumn.Text [Property][Get]

IObjectViewColumn.Text [Property][Get]

Gets the Text that is being displayed for this columns header.

Defined As

Execution Result

If the property get succeeds, the return value will be Success. If the return variable is bad, the return value will be InvalidArgument.

Calling Syntax

This example assumes there is a valid column as retrieved from an ObjectView. (for example, VBA: objectView.Columns.Item(1)).

[VBA]

Sub Example(objectViewColumn As Object)
Dim text As String
`Getting Property value
text = objectViewColumn.Text
End Sub

[Cicode]

FUNCTION Example(OBJECT hObjectViewColumn)
// Getting property value
STRING text = _ObjectGetProperty(hObjectViewColumn, "Text");
END