ActiveReports3 Request technical support
SendToBack Method
See Also  Example


Sends the control to the back of the z-order.

Syntax

Visual Basic (Declaration) 
Public Sub SendToBack() 
Visual Basic (Usage)Copy Code
Dim instance As ARControl
 
instance.SendToBack()
C# 
public void SendToBack()

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
   
this.barcode1.SendToBack();
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Barcode1.SendToBack()
End Sub

See Also