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

IObjectViewColumn.Name [Property][Get]

Retrieves the unique identifier of this column.

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 name As String
`Getting Property value
name = objectViewColumn.Name
End Sub

[Cicode]

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