Browse
 
Tools
Rss Categories

LVSemanticArray C++ API Summary

Reference Number: AA-00945 Views: 8321 0 Rating/ Voters

LVSemanticArray represents an array type. You can get an array out of a data type container by calling LVSemanticData::GetSemanticArray().

Functions Return Type Description
LVSemanticArray()   Constructor
LVSemanticArray(const LVSemanticArray& other)   Copy constructor
operator=(const LVSemanticArray& other) LVSemanticArray& Assignment Operator
~LVSemanticArray()   Destructor
Size() int Return the number of properties in this array.
operator [] (int Index) const LVSemanticData& Return the semantic data indicated by the index. If the Index does not exist, the returned semantic data will have type SI_TYPE_NULL.
At(int Index) const LVSemanticData& Return the semantic data indicated by the index. If the Index does not exist, the returned semantic data will have type SI_TYPE_NULL.

See Also