See Also

ARControl Class  | ARControl Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Location Property

Gets or sets the location of the control.

[Visual Basic]
Public Property Location As PointF
[C#]
public PointF Location {get; set;}

Return Type

System.Drawing.PointF defined by X and Y float or Single values in inches.

Remarks

Note: Be sure that the section containing the control is sized to accommodate the location.  Otherwise the control may render in a hidden area.

Example

[C#] 

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.TextBox1.Location = p; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    Dim p As System.Drawing.PointF
    p.X = 0.5
    p.Y = 0.5
    Me.TextBox1.Location = p
End Sub

See Also

ARControl Class  | ARControl Members

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.