Reports for WinForms | ComponentOne
C1.C1Report.4 Assembly / C1.C1Report Namespace / Section Class / CanGrow Property

In This Topic
    CanGrow Property (Section)
    In This Topic
    Specifies whether the Section height should be automatically increased to fit its contents.
    Syntax
    'Declaration
     
    Public Property CanGrow As Boolean
    public bool CanGrow {get; set;}
    Remarks

    You can use the CanGrow and CanShrink properties to control the appearance of report sections and fields.

    For example, if you set both properties to true, a section or field automatically adjusts vertically to print or preview all the data it contains.

    Sections grow and shrink vertically across their entire width.

    When a section grows or shrinks, its Height property does not change. To retrieve the actual rendering height, use the RenderHeight property.

    You can make fields grow or shrink to match the size of the section by setting their Field.Anchor property.

    See Also