Returns the extended name of the property.

Type Info:

ExtendedName As String
Example:
Dim TUProps As TransUnitProperties
Dim TUProp As TransUnitProperty
Dim Property As String
Dim Number As String

Set TUProps = Application.ActiceTransUnit.Properties

For Each TUProp In TUProps
    Property = "Name: " & TUProp.Name & " , ExtendedName: " & TUProp.ExtendedName & _
	" , Value:" & TUProp.Value & " , NamespaceURI: " & TUProp.NamespaceURI
    Windows.MultiViewBar.Output.AddText (Property)
Next TUProp

Number = TUProps.Count & " properties available."
Windows.MultiViewBar.Output.AddText (Number)
Remarks: If the name is set to transunit_x_extended the extended name has to be set.

Read-only property.

See also:

Class TransUnitProperty

Last Updated: 03/16/04