Click or drag to resize

ControllerConfiguration Property

Gets the ConfigurationDatabase class of the controller

Namespace:  ABB.Robotics.Controllers
Assembly:  ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax
C#
public ConfigurationDatabase Configuration { get; }

Return Value

Type: ConfigurationDatabase
A ConfigurationDatabase reference that can be used to access objects in the configuration domain in the controller.
Exceptions
ExceptionCondition
GeneralExceptionA General Exception has occurred.
Examples
This example uses the ConfigurationDatabase property of the Controller class to read from the configuration database.
// Create a Controller instance
Controller c = new Controller();

// Read data from the configuration database
string data = c.Configuration.Read("MOC", "MOTOR_CALIB", "irb_1", "cal_offset");
See Also