Constructor Thickness
Thickness(float)
Initializes a new instance of the Thickness struct with the same value on every side.
public Thickness(float uniform)
Parameters
uniformfloatThe specified uniform length.
Thickness(float, float, float, float)
Initializes a new instance of the Thickness struct with the specified values for the each side.
public Thickness(float left, float top, float right, float bottom)
Parameters
leftfloatThe thickness for the left side.
topfloatThe thickness for the top side.
rightfloatThe thickness for the right side.
bottomfloatThe thickness for the bottom side.
Thickness(float, float)
Initializes a new instance of the Thickness structure with the specified values for the horizontal and vertical sides.
public Thickness(float horizontal, float vertical)