Gets or sets a value indicating whether this item's design-time order will take precedence over the item's vertical position within the page design when determining the layout order.
Namespace: MindFusion.Reporting
Assembly: MindFusion.Reporting
C#
![]() |
---|
public bool UseDesignOrder { get; set; } |
Visual Basic
![]() |
---|
Public Property UseDesignOrder As Boolean |
true to force the design-time order of the item to take precedence over the item's vertical position when determining the order in which the items are being laid out; otherwise, false. The default is false.
When determining the order in which items are process during report layout, the following rules apply based on the value of this property:
Item1.UseDesignOrder | Item2.UseDesignOrder | Description |
---|---|---|
false | false | The vertical position of the items is considered when determining the layout order. The item with smaller y-coordinate is laid out first. |
false | true | Item1 is laid out first. |
true | false | Item2 is laid out first. |
true | true | The design-time order of the items is considered when determining the items layout order. The item with smaller design-time order is laid out first. |