Returns the value of the property or sets it.

Type Info:

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

Class TransUnitProperty

Last Updated: 04/27/05