ActiveReports Developer 7
CanShrink Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > RichTextBox Class : CanShrink Property

Glossary Item Box

Determines whether ActiveReports should decrease the height of the field based on its value.

Syntax

Visual Basic (Declaration) 
Public Property CanShrink As System.Boolean
C# 
public System.bool CanShrink {get; set;}

Property Value

A Boolean value that determines the behavior. If False, ActiveReports does not change the height of the control based on the size of its content.  If True, ActiveReports decreases the height of the control and shifts all controls below it to account for the decrease in height.

Remarks

The decrease in height might cause the section height to decrease when the section's CanShrink property is set to True.  ActiveReports does not shift any controls below the shrinking control unless there are no intersecting controls along the shifting path.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.rtbActiveReport.CanShrink = true;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.rtbActiveReport.CanShrink = True
End Sub

See Also

Reference

RichTextBox Class
RichTextBox Members
ActiveReports6~GrapeCity.ActiveReports.Section~CanShrink
ActiveReports6~GrapeCity.ActiveReports.RichTextBox~CanGrow