ActiveReports3 Request technical support
Height Property
See Also  Example


Gets or sets the height of the section.

Syntax

Visual Basic (Declaration) 
Public Property Height As Single
Visual Basic (Usage)Copy Code
Dim instance As Section
Dim value As Single
 
instance.Height = value
 
value = instance.Height
C# 
public float Height {get; set;}

Return Value

Height of the section in inches.  Default is 2 inches.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
   
this.detail.Height = 2.0f;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Detail1.Height = 2.0F
End Sub

See Also