See Also

ARControl Class  | ARControl Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Left Property

Gets or sets the left position of the control.

[Visual Basic]
Public Property Left As Single
[C#]
public float Left {get; set;}

Return Type

A float or Single value in inches.

Example

[C#] 

private void Detail_Format(object sender, System.EventArgs eArgs) 

    this.TextBox1.Height = 1; 
    this.TextBox1.Width = 2; 
    this.TextBox1.Left = 2; 
    this.TextBox1.Top = 0; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    With Me.TextBox1
        .Height = 1
        .Width = 2
        .Left = 2
        .Top = 0
    End With
End Sub

See Also

ARControl Class  | ARControl Members

 

 


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