- Getting started
- Creating projects
- Graphic objects
- Predefined graphic objects
- Object and variable references
- Extending projects
- NetLogic
- Tutorials
- Dynamic links tutorial
- Graphic objects tutorial
- NetLogic tutorial
- OPC UA tutorial
LogicObject Variable: direct access to the NetLogic object
LogicObject
Variable: direct access to the NetLogic objectEach NetLogic displays a
LogicObject
variable, which represents the same NetLogic node. It is useful for directly accessing the node.Examples
This example shows the value of the
Speed
variable contained in the NetLogic set to 100
LogicObject.GetVariable("Speed").Value = 100;
This example shows the value of the
Speed
variable assigned to the speed
C# integer variable.
int speed = LogicObject.GetVariable("Speed").Value;
Provide Feedback