ActiveReports 9
Location Property (ARControl)
Example 

Gets or sets the location of the control in inches.
Syntax
'Declaration
 
Public Overridable Property Location As PointF
public virtual PointF Location {get; set;}

Property Value

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

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ARControl Class
ARControl Members

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum