Returns the extended name of the property.

Type Info:

ExtendedName As String
Example:
Dim AltTransProps As AltTranslationProperties
Dim AltTransProp As AltTranslationProperty
Dim Property As String
Dim Number As String

Set AltTransProps = Application.ActiveTransUnit.AltTranslations(1).Properties

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

Number = AltTransProps.Count & " properties available."
Windows.MultiViewBar.Output.AddText (Number)
Remarks: Read-only property.
See also:

Class AltTranslationProperty

Last Updated: 03/16/04