ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / ARControl Class / BringToFront Method
Example

In This Topic
    BringToFront Method (ARControl)
    In This Topic
    Brings the control to the front of the z-order.
    Syntax
    'Declaration
     
    Public Sub BringToFront() 
    public void BringToFront()
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.barcode1.BringToFront();
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
        Me.Barcode1.BringToFront()
    End Sub
    See Also