Description
Type StringTable
Method get:string (
key:string
)
Method set:StringTable (
key:string,
value:string
)
End Type
Get and set string values. Works in a similar way to a TMap,
but is strongly typed for strings.
Use get and set methods for fetching and setting
data.
Type Methods
get
Get the value for key in the string table.
Method get:string (
key:string
)
- key:string
- The key to search for.
- Returns:string
- The value found, or an empty string if not found.
set
Set the value for key in the string table.
Method set:StringTable (
key:string,
value:string
)
- key:string
- The key to set.
- value:string
- The value to set.
- Returns:StringTable
- The StringTable object.