RC-WinTrans Object Model Help |
VBATool.GetAllStringsFromEnumeration |
This method saves all the descriptive strings of an RC-WinTrans enumeration in the "StringArray" parameter and returns whether the action was successful.
Syntax: |
GetAllStringsFromEnumeration(EnumerationName As String, StringArray As Variant ) As Boolean |
Return: | Boolean |
Parameters: |
EnumerationName Name of the enumeration to be scanned. StringArray Array where the strings are saved.
|
Example: | Dim Tool As VBATool Dim StrAry() As Variant Dim i As Integer Set Tool = Tools.VBATool Call Tool.GetAllStringsFromEnumeration("XLIFFTransUnitStates", StrAry) For i = 0 To UBound(StrAry) MsgBox StrAry(i) Next i |
See also: