StructureRef::GetNameArray
Defined in:
Returns the array of names stored in a reference.
TSData.h
Prototype
const ImmutableArray<String<>>& GetNameArray(void) const;
Description
The GetNameArray
function returns the array of names stored in a structure reference. The Array::GetArrayElementCount
function can be used to retrieve the number of names in the array, and the []
operator can be used to retrieve each individual name in the array. For a null reference, the name array is empty (i.e., has zero elements).
See Also