Gets or sets the ZOrder for the field.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[DefaultValueAttribute()]
[BrowsableAttribute(false)]
public int ZOrder { get; set; }
Visual Basic
<DefaultValueAttribute()> _
<BrowsableAttribute(False)> _
Public Property ZOrder As Integer
	Get
	Set

Remarks

The ZOrder of a field determines whether it is rendered in front of or behind other fields that overlap with it.

High ZOrder values bring the field to the front, low values send it to the back.

Because ZOrder values are relative, it is usually easier to call the SetZOrder(Boolean) method, which ensures the field is rendered in front of or behind all other overlapping fields.

The default value for this property is 0.

See Also