BringToZPosition Method
Description
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.
Syntax
Visual Basic |
---|
Public Function BringToZPosition( _ ByVal zPositionMode As BringToZPositionMode _ ) As Boolean |
Parameters
- zPositionMode
Value Description Bottom NotTopMost Top TopMost
Example
This moves the Comment Input dialog box to the top-most position.
// ... PCDLRN. ICommentInputDialog commentInput = theCommentInput; PCDLRN.BringToZPositionMode mode = PCDLRN.BringToZPositionMode.Bottom; if (commentInput.IsReady) { commentInput.BringToZPosition(mode); } // ...
See Also