MindFusion.Reporting for Silverlight Programmer's Guide
ReportItem.UseDesignOrder Property
See Also
 





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. This is a dependency property.

Namespace: MindFusion.Reporting.Silverlight
Assembly: MindFusion.Reporting.Silverlight

 Syntax

C#  Copy Code

public bool UseDesignOrder { get; set; }

Visual Basic  Copy Code

Public Property UseDesignOrder As Boolean

 Property Value

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.

 Remarks

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.

 See Also

ReportItem Members
ReportItem Class
MindFusion.Reporting.Silverlight Namespace