Browse
 
Tools
Rss Categories

LVSemantic Object C API Summary

Reference Number: AA-02058 Views: 3657 0 Rating/ Voters

A LVSemanticObject is a composite object.

Function Return Type Description
LVSemanticObject_GetNumberOfProperties(H_SI_DATA h_si_data) intIf the h_si_data is of type SI_TYPE_ARRAY, returns the number of elements in the object.
LVSemanticObject_GetPropertyName(H_SI_DATA h_si_data, int index) const char* If the h_si_data is of the type SI_TYPE_OBJECT, returns the name of a property of the object.
LVSemanticObject_GetPropertyValue(H_SI_DATA h_si_data, const char* property_name) H_SI_DATA If the h_si_data is of the type SI_TYPE_OBJECT, returns the handle to property_name.
LVSemanticObject_PropertyExists(H_SI_DATA h_si_data, const char* property_id) int If the h_si_data is of the type SI_TYPE_OBJECT, returns a boolean indicating whether property_name exists.
 

See Also