See Also

ARControl Class  | ARControl Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Size Property

Gets or sets the size of the control in inches.

[Visual Basic]
Public Property Size As SizeF
[C#]
public SizeF Size {get; set;}

Return Type

System.Drawing.SizeF.

Example

[C#] 

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

    System.Drawing.SizeF s = new System.Drawing.SizeF(); 
    s.Width = 2; 
    s.Height = 1; 
    this.TextBox1.Size = s; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    Dim s As System.Drawing.SizeF
    s.Width = 2
    s.Height = 1
    Me.TextBox1.Size = s
End Sub

See Also

ARControl Class  | ARControl Members

 

 


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