[]
Gets or sets a drawing order of the report item within its container.
public int ZIndex { get; set; }
Type | Description |
---|---|
int | An int value indicating the drawing order of the report item within the containing object. |
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
.
var reportItem = new TextBox();
reportItem.ZIndex = 2;