System.Windows.Forms.Padding.Padding C# (CSharp) Method

Padding() public method

public Padding ( int all ) : System
all int
return System
        public Padding(int all)
        {
            _left = _bottom = _right = _top = 0;

            this.Left = all;
            this.Bottom = all;
            this.Right = all;
            this.Top = all;
        }

Same methods

Padding::Padding ( int left, int bottom, int right, int top ) : System