Defines the stacking rules: block or inline flow,
top to bottom or left to right for block flow.
Namespace:
C1.C1PreviewAssembly: C1.C1Report.2 (in C1.C1Report.2.dll)
Syntax
| C# |
|---|
public enum StackingRulesEnum |
| Visual Basic |
|---|
Public Enumeration StackingRulesEnum |
Members
| Member name | Description | |
|---|---|---|
| BlockTopToBottom | Objects are placed one beneath another within the container. When the bottom edge of the current page is reached, a new page is added. This is the default. | |
| BlockLeftToRight | Objects are placed one next to another, from left to right. When the right edge of the current page is reached, a new horizontal page is added (a horizontal page logically extends the preceding page to the right; C1PreviewPane respects this location by default, showing such pages in a row). | |
| InlineLeftToRight | Objects are placed inline, one next to another, from left to right. When the right edge of the current page is reached, the sequence wraps to the next line. A new page is added when the bottom of the current page is reached. |