PC-DMIS 2019 R2 Object Library
BringToZPosition Method
See Also  Example  Send Topic Feedback | See Object Hierarchy Chart
zPositionMode
PCDLRN ActiveX DLL > CommentInputDialog Object : BringToZPosition Method

Glossary Item Box

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
ValueDescription
Bottom 
NotTopMost 
Top 
TopMost 

Example

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);
}
// ...

See Also

Copyright © 2019. Hexagon Manufacturing Intelligence – Metrology Software, Inc. All Rights Reserved.