Changes the frame's z-order.
Introduced: X8.
public bool ChangeZOrder(ZOrder zOrder);
Public Function ChangeZOrder(ByVal zOrder As ZOrder)
Parameter | Description |
---|---|
z |
Specifies how the z-order is changed. It can be a value of the ZOrder enumeration. |
The return value is true, if the z-order could be changed. Otherwise, it is false.
The following example shows the Frame
TXTextControl.FrameBase frameBase = new TXTextControl.FrameBase();
frameBase.Name = "points";
frameBase.Moveable = true;
frameBase.Alignment = TXTextControl.HorizontalAlignment.Left;
frameBase.ChangeZOrder(TXTextControl.ZOrder.TopMost);
Dim frameBase As TXTextControl.FrameBase = New TXTextControl.FrameBase()
frameBase.Name = "points"
frameBase.Moveable = True
frameBase.Alignment = TXTextControl.HorizontalAlignment.Left
frameBase.ChangeZOrder(TXTextControl.ZOrder.TopMost)