This property controls whether the "Press OK when ready to Move Wrist to <Angle>" message box appears even when an automation call generates the message. (<Angle> represents an AB angle contained in the message box.)
Read-write property
| Visual Basic |
|---|
Public Property AutomationShowReadyToMoveWristToMessageBox As Boolean |
Read/Write Boolean. True means the message appears. False means it's hidden. The default value is False.
| Example (C#) | Copy Code |
|---|---|
var comType = Type.GetTypeFromProgID(@"PCDLRN.Application"); var theAutomationSettings = theApp.AutomationSettings; theAutomationSettings.AutomationShowReadyToMoveWristToMessageBox = true; | |