Ext.Net.Layer.SetZIndex C# (CSharp) Method

SetZIndex() public method

Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
public SetZIndex ( int zindex ) : Layer
zindex int The new z-index to set
return Layer
        public virtual Layer SetZIndex(int zindex)
        {
            this.Call("setZIndex", zindex);
            return this;
        }