ActiveReports3 Request technical support
Location Property
See Also  Example


Gets or sets the location of the control in inches.

Syntax

Visual Basic (Declaration) 
Overrides Public NotOverridable Property Location As PointF
Visual Basic (Usage)Copy Code
Dim instance As Line
Dim value As PointF
 
instance.Location = value
 
value = instance.Location
C# 
public override PointF Location {get; set;}

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
   System.Drawing.PointF p =
new System.Drawing.PointF();
   p.X = 0.5f;
   p.Y = 0.5f;
   
this.line1.Location = p;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Dim p As System.Drawing.PointF
    p.X = 0.5
    p.Y = 0.5
    Me.Line1.Location = p
End Sub

See Also