IPaddable Interface

Represents something that is paddable.
public interface IPaddable

Properties

abstract Padding? Padding
Gets or sets the padding.

Extension Methods

T And<IPaddable>(Action<IPaddable>)
Performs the specified action on the given object and then returns the object. Useful for fluent testing patterns where additional assertions or operations are chained together in a readable manner.
T PadBottom<IPaddable>(int)
Sets the bottom padding.
T Padding<IPaddable>(int, int, int, int)
Sets the left, top, right and bottom padding.
T Padding<IPaddable>(int, int)
Sets the horizontal and vertical padding.
T Padding<IPaddable>(Padding)
Sets the padding.
T PadLeft<IPaddable>(int)
Sets the left padding.
T PadRight<IPaddable>(int)
Sets the right padding.
T PadTop<IPaddable>(int)
Sets the top padding.