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

Glossary Item Box

Description

This method sets the Z position of the message box based on the parameter's value.

When you have multiple message 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 

Return Type

Boolean.
It returns True if a new Z order has been set for the item.
It returns False if it fails to set the Z order.

Example

This moves a message box to the top-most position:
Example (C#)Copy Code
// ...
    PCDLRN. IPCDMessageBox  messageBox = theMessageBox;
    PCDLRN.BringToZPositionMode mode = PCDLRN.BringToZPositionMode.Top;
    if (messageBox.IsReady) 
{
   messageBox.BringToZPosition(mode);
}
// ...

See Also

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