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