[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItem.ZIndex

ZIndex Property

ZIndex

Gets or sets a drawing order of the report item within its container.

Declaration
public int ZIndex { get; set; }
Property Value
Type Description
int

An int value indicating the drawing order of the report item within the containing object.

Remarks

Items with lower indices are drawn first and appear behind items with higher indices.

Items with the same index have an unspecified order.

The default value is 0. The range is 0 to 2147483647.

Examples
var reportItem = new TextBox();
reportItem.ZIndex = 2;