Send Topic Feedback | See Object Hierarchy Chart
PC-DMIS 2023.2 Object Library
PCDLRN ActiveX DLL > AutomationSettings Object : AutomationShowReadyToMoveWristToMessageBox Property
AutomationShowReadyToMoveWristToMessageBox Property
Description
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.)
Property type
Read-write property
Syntax
Visual Basic
Public Property AutomationShowReadyToMoveWristToMessageBox As Boolean
Return Type

Read/Write Boolean. True means the message appears. False means it's hidden. The default value is False.

Example
var comType = Type.GetTypeFromProgID(@"PCDLRN.Application");
var theAutomationSettings = theApp.AutomationSettings;
theAutomationSettings.AutomationShowReadyToMoveWristToMessageBox = true;
See Also