No.13S064-13
46/55
STC-CMC2MPOE / STC-CMB2MPOE / STC-CMB2MPOE-IR /
STC-CMC4MPOE / STC-CMB4MPOE / STC-CMB4MPOE-IR Product Specifications and User’s Guide
String type paramter control
String type parameter such as “DeviceModelName” control.
e.g.DeviceModelName writing (DeviceModelName cannot overwrite)
[C++]
PvDevice.GetGenParameters()->SetString(“DeviceModelName”, “STC-SB33POE”);
[C#]
PvDevice.GenParameters.SetStringValue(“DeviceModelName”, “STC-SB33POE”);
e.g. DeviceModelName reading
[C++]
PvDevice.GetGenParameters()->GetString(“DeviceModelName”, &PvStringValue);
[C#]
stringValue = PvDevice.GenParameters.GetStringValue(“DeviceModelName”);
Boolean type parameter control
Boolean type parameter such as “LineInverter0” control.
e.g. LineInverter0 writing
[C++]
PvDevice.GetGenParameters()->SetBooleanValue(“LineInverter0”, true);
[C#]
PvDevice.GenParameters.SetBooleanValue(“LineInverter0”, true);
e.g. LineInverter0 reading
[C++]
PvDevice.GetGenParameters()->GetBooleanValue(“LineInverter0”, &boolValue);
[C#]
boolValue = PvDevice.GenParameters. GetBooleanValue(“LineInverter”);
Command type paramter control
Command type parameter such as “TriggerSoftware”
e.g. TriggerSoftware generating
[C++]
PvDevice.GetGenParameters()->ExecuteCommand(“TriggerSoftware”);
[C#]
PvDevice.GenParameters.ExexuteCommand(“TriggerSoftware”);