ImageGear for .NET
MarkBringToFront(ImGearARTMark) Method
See Also  Example Send Feedback
ImageGear21.Art Assembly > ImageGear.ART Namespace > ImGearARTPage Class > MarkBringToFront Method : MarkBringToFront(ImGearARTMark) Method




mark
Mark to move.

Glossary Item Box

Moves the specified mark to the top of Z-Order.

Syntax

 
Visual Basic
C#
Managed Extensions for C++
C++/CLI
 
 

Parameters

mark
Mark to move.

Example

C#Copy Code
// Send any text marks true the back of the z order, and line marks to the front.
foreach (ImGearARTMark igARTMark in igARTPage.Groups[0])
{
    if (igARTMark is ImGearARTText)
        igARTPage.MarkSendToBack(igARTMark);
    else if (igARTMark is ImGearARTLine)
        igARTPage.MarkBringToFront(igARTMark);
}
Visual BasicCopy Code
' Send any text marks true the back of the z order, and line marks to the front.
For Each igARTMark As ImGearARTMark In igARTPage.Groups(0)
    If TypeOf igARTMark Is ImGearARTText Then
        igARTPage.MarkSendToBack(igARTMark)
    ElseIf TypeOf igARTMark Is ImGearARTLine Then
        igARTPage.MarkBringToFront(igARTMark)
    End If
Next

See Also

©2013. Accusoft Corporation. All Rights Reserved.