See Also

Section Class  | Section Members  | CanShrink

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

CanGrow Property

Indicates whether the section height should grow when its controls extend beyond its original height.

[Visual Basic]
Public Property CanGrow As Boolean
[C#]
public bool CanGrow {get; set;}

Return Type

Boolean. True if the section should grow to fit its controls, False if the controls should be clipped to the section's height.  Default is True.

Example

[C#] 

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

    this.Detail.CanGrow = true; 
    this.Detail.CanShrink = false; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    Me.Detail.CanGrow = True
    Me.Detail.CanShrink = False
End Sub

See Also

Section Class  | Section Members  | CanShrink

 

 


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