RC-WinTrans Object Model Help |
TransUnitProperty.NamespaceURI
|
Type Info: |
NamespaceURI 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: | Read-only property. If the property is an XLIFF attribute the NamespaceURI is an empty string.
|