This method sets the Z position of the Input Comment dialog box based on the parameter's value.
When you have multiple dialog boxes, the Z position controls the order in which the item appears.
Visual Basic |
---|
Public Function BringToZPosition( _ ByVal zPositionMode As BringToZPositionMode _ ) As Boolean |
- zPositionMode
Value Description Bottom NotTopMost Top TopMost
This moves the Comment Input dialog box to the top-most position.
Example (C#) | Copy Code |
---|---|
// ... PCDLRN. ICommentInputDialog commentInput = theCommentInput; PCDLRN.BringToZPositionMode mode = PCDLRN.BringToZPositionMode.Bottom; if (commentInput.IsReady) { commentInput.BringToZPosition(mode); } // ... |