RC-WinTrans Object Model Help | 
  TransUnitProperty.Value
 | 
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)
 |