FOM Reference > Application > Arrays > fStringArray interface
  
fStringArray interface
A container of strings.
length attribute
Returns the number of elements in this array.
length
Access
read-only
Returns
unsigned int
item method
Return the item stored at the given index.
itemindex
Parameters
unsigned intindex
The index of the item to be returned.
Returns
String. The item stored at the given index.
namedItem method
Returns the value currently stored under the given name.
namedItemname
Parameters
Stringname
The name of the item to be returned.
Returns
String. The value stored under the given name.
readResolve method
Return the object corresponding to the given serialized representation.
readResolveobj
Parameters
Objectobj
The serialized representation.
Returns
fStringArray. The object corresponding to the serialized representation.
setItem method
Set the string stored at the given index.
setItemindexstring
Parameters
unsigned intindex
The index of the item to be stored.
Stringstring
The string to be stored at the given index.
Returns
void. This method does not have a return value.
setNamedItem method
Set the value stored under the given name.
setNamedItemnamevalue
Parameters
Stringname
The name of the item to be set.
Stringvalue
The value to store under the given name.
Returns
void. This method does not have a return value.