ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportItem Class / ZIndex Property
Example

In This Topic
    ZIndex Property (ReportItem)
    In This Topic
    Gets or sets a drawing order of the report item within its container.
    Syntax
    'Declaration
     
    Public Property ZIndex As Integer
    public int ZIndex {get; set;}

    Property Value

    An System.Int32 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.

    Example
    var reportItem = new TextBox();
    reportItem.ZIndex = 2;
    See Also