ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Core.Rendering Assembly / GrapeCity.ActiveReports.Extensibility.Layout Namespace / LayoutCapabilities Enumeration

In This Topic
    LayoutCapabilities Enumeration
    In This Topic
    Specifies what layout options are available for the report item. This enumeration is used with the ILayoutManager.Capabilities property.
    Syntax
    'Declaration
     
    Public Enum LayoutCapabilities 
       Inherits System.Enum
    public enum LayoutCapabilities : System.Enum 
    Members
    MemberDescription
    CanGrowHorizontallyThe report item can grow horizontally to fit the contents.
    CanGrowVerticallyThe report item can grow vertically to fit the contents.
    CanShrinkHorizontallyThe report item can shrink horizontally to fit the contents.
    CanShrinkVerticallyThe report item can shrink vertically to fit the contents.
    CanSplitHorizontallyWhen the contents do not fit, the left portion of the report item can be rendered on the current page and the right portion on the following page. The default behavior is for the entire report item to move to the following page.
    CanSplitVerticallyWhen the contents do not fit, the top portion of the report item can be rendered on the current page and the bottom portion on the following page. The default behavior is for the entire report item to move to the following page.
    NoneThe report item size remains fixed regardless of the contents.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.ActiveReports.Extensibility.Layout.LayoutCapabilities

    See Also