System.Windows.Forms.Padding.Padding C# (CSharp) 메소드

Padding() 공개 메소드

public Padding ( int all ) : System
all int
리턴 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