ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Container Class / ConsumeWhiteSpace Property
Example

In This Topic
    ConsumeWhiteSpace Property (Container)
    In This Topic
    Gets or sets a value indicating that all white space in the container is consumed during report rendering when the container’s contents grow, rather than preserving the minimum white space between the contents and the bounds of the container.
    Syntax
    'Declaration
     
    Public Property ConsumeWhiteSpace As Boolean
    public bool ConsumeWhiteSpace {get; set;}

    Property Value

    A System.Boolean value where true indicates that all white space in the container is consumed; otherwise, false.
    Example
    Container container = new Container();
    container.ConsumeWhiteSpace = true;
    See Also