ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / ARControl Class / SendToBack Method
Example

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