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

LayoutCapabilities Enumeration
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
 
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.
Remarks
This enumeration should not be used directly in application code. It is designed for internal operations within the product libraries and may change or be removed in future versions without notice.
Inheritance Hierarchy

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

See Also