Thickness

Thickness(double, double, double, double)

Initializes a new instance of the Thickness class that has specific lengths applied to each side of the rectangle.

public Thickness(double left, double right, double top, double bottom)
Parameter Type Description
left Double The thickness for the left side of the rectangle.
right Double The thickness for the right side of the rectangle.
top Double The thickness for the top side of the rectangle.
bottom Double The thickness for the bottom side of the rectangle.

See Also


Thickness(double)

Initializes a new instance of the Thickness class that has the specified uniform length on each side.

public Thickness(double uniformLength)
Parameter Type Description
uniformLength Double The uniform length applied to all four sides of the bounding rectangle.

See Also