Function iseg_getItemPropertyString

Read iseg item properties without the use of structures. For applications like LabVIEW this second read function uses basic data types only.

IsegResult iseg_getItemPropertyString(const char *name, const char *object, const char *result, int size)

Parameter name is the session name passed to iseg_connect (for example "IF0").
Parameter object contains the fully qualified name to read out the iseg item properties.
Parameter result references an IsegItemProperty formatted as semicolon-separated-string.
Parameter size: The size of the given buffer.
Return value is ISEG_OK if the object could address a valid IsegItemProperty or ISEG_ERROR

Example:

 iseg_getItemPropertyString("can0", "0.4.1.VoltageMeasure", buffer, sizeof(buffer));
  buffer = "0.4.1.VoltageMeasure;R4;V;R;002"