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.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.
C# | Copy Code |
---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { this.rtbActiveReport.CanShrink = true; } |
Visual Basic | Copy Code |
---|---|
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.rtbActiveReport.CanShrink = True End Sub |
Reference
RichTextBox ClassRichTextBox Members
ActiveReports6~GrapeCity.ActiveReports.Section~CanShrink
ActiveReports6~GrapeCity.ActiveReports.RichTextBox~CanGrow