Properties
Name
The name of the ModFrame component. This name will be visible below the ModFrame component in the ModFrame Client configuration panel.
The name of a ModFrame component must be unique within the container it resides in. |
Add options
Specifies how elements are added to the resulting string vector.
The options are:
- Increasing
The new string will be appended to the existing vector. The MaxElements property does not apply. - Shifting
The new string will be appended to the existing vector until the length of the vector reaches the number of the MaxElements property, after which the older elements will be shifted out and the new element will be written to the last element of the vector. - Constant position
The new string will be appended to the existing vector until the length of the vector reaches the number of the MaxElements property, after which the new element will be shifted out and the new element will be written to the first element, the next element after that will be written to the second element and so forth.
Unique elements
If true a string will not be added to the vector if there already is an equal string in that vector.
Allow empty strings
If true empty strings are allowed in the vector.
Max Elements
The maximum number of elements in the vector. Only applies when the Add options property is not set to Increasing
Persist vector
The vector will be persisted if true.