PslProperties.Value
Returns the value of a custom property.
Syntax
Expression.Value (Index as Long) as Variant
Expression Required. Object of type PslProperties
Index Index of the property. A value between 1 and PslProperties.Count
Example
Rem Dump properties of a TransString
Dim t As PslTransString
...
propcount = t.Properties.Count
For i = 1 To propcount
Dim propname As Variant
Dim propval As Variant
propname = t.Properties.Name(j)
propval = t.Properties.Value(j)
PSL.Output propname & " = " & propval
Next j