Ext.Net.DragDrop.SetPadding C# (CSharp) Method

SetPadding() public method

Configures the padding for the target zone in px. Effectively expands (or reduces) the virtual object size for targeting calculations. Supports css-style shorthand; if only one parameter is passed, all sides will have that padding, and if only two are passed, the top and bottom will have the first param, the left and right the second.
public SetPadding ( int iTop, int iRight, int iBot, int iLeft ) : void
iTop int Top pad
iRight int Right pad
iBot int Bot pad
iLeft int Left pad
return void
        public void SetPadding(int iTop, int iRight, int iBot, int iLeft)
        {
            this.Call("setPadding", iTop, iRight, iBot, iLeft);
        }