Property to access all Motion related methods and propeties
Namespace: EAL.InterfacesAssembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)
Syntax
| C# |
|---|
ISystem System { get; } |
| Visual Basic |
|---|
ReadOnly Property System As ISystem Get |
| Visual C++ |
|---|
property ISystem^ System { ISystem^ get (); } |
Property Value
Type: ISystem
Examples
private static void Method1() { using (IEALConnection ealConnection = new EALConnection()) { ealConnection.Connect("192.168.0.10"); ealConnection.System.Reboot(); } } | |