ControllerIOSystem Property |
Gets the
IOSystem class of the controller
Namespace:
ABB.Robotics.Controllers
Assembly:
ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax public IOSystem IOSystem { get; }
Return Value
Type:
IOSystem An
IOSystem reference that can be used to access objects in the IOSystem domain in the controller.
Exceptions Examples This example uses the
IOSystem property of the
Controller class to get a
DigitalSignal instance,
which references the signal USERDO1.
The value of the
DigitalSignal is inverted.
Controller c = new Controller();
DigitalSignal digSig = (DigitalSignal) c.IOSystem.GetSignal("USERDO1");
digSig.Invert();
See Also