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

In This Topic
    Overflow Property (Container)
    In This Topic
    Gets or sets a value indicating how content that is larger than the container should be handled.
    Syntax
    'Declaration
     
    Public Property Overflow As Overflow
    public Overflow Overflow {get; set;}

    Property Value

    An Overflow value indicating how to handle content larger than the container. The default value is Overflow.Auto.
    Example
    Container container = new Container();
    container.Overflow = Overflow.Grow;
    See Also