RC-WinTrans Object Model Help | 
  GroupProperty.Value
 | 
Type Info:  | 
	 Value As String  | 
  
| Example: | Dim GroupProps As GroupProperties
Dim GroupProp As GroupProperty
Dim Property As String
Dim Number As String
Set GroupProps = Application.ActiveProjectFile.SubFiles(1).Group(1).Properties
For Each GroupProp In GroupProps
    Property = "Name: " & GroupProp.Name & " , ExtendedName: " & GroupProp.ExtendedName & _
	" , Value:" & GroupProp.Value & " , NamespaceURI: " & GroupProp.NamespaceURI
    Windows.MultiViewBar.Output.AddText (Property)
Next GroupProp
Number = GroupProps.Count & " properties available."
Windows.MultiViewBar.Output.AddText (Number)
 |