Returns the value of the property or sets it.

Type Info:

Value 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)
See also:

Class AltTranslationProperty

Last Updated: 04/26/05