System.Windows.Forms.Padding.Padding C# (CSharp) Méthode

Padding() public méthode

public Padding ( int left, int bottom, int right, int top ) : System
left int
bottom int
right int
top int
Résultat System
        public Padding(int left, int bottom, int right, int top)
        {
            _left = _bottom = _right = _top = 0;

            this.Left = left;
            this.Bottom = bottom;
            this.Right = right;
            this.Top = top;
        }

Same methods

Padding::Padding ( int all ) : System