Padding

Padding()

Initializes a new instance of Padding class using zero values.

public Padding()

See Also


Padding(int)

Initializes a new instance of the Padding class using the supplied padding size for all edges.

public Padding(int all)
Parameter Type Description
all Int32 The number of measure units to be used for padding for all edges.

See Also


Padding(int, int, int, int)

Initializes a new instance of the Padding class using the supplied padding sizes.

public Padding(int left, int right, int top, int bottom)
Parameter Type Description
left Int32 The left padding size.
right Int32 The right padding size.
top Int32 The top padding size.
bottom Int32 The bottom padding size.

See Also