Table of Contents

Struct Thickness

Namespace
Ecng.Drawing
Assembly
Ecng.Drawing.dll

Thickness.

public struct Thickness
Inherited Members
Extension Methods

Constructors

Thickness(double, double, double, double)

Initializes a new instance of the Thickness.

public Thickness(double left, double top, double right, double bottom)

Parameters

left double

Left.

top double

Top.

right double

Right.

bottom double

Bottom.

Properties

Bottom

Gets or sets the width, in pixels, of the lower side of the bounding rectangle.

public double Bottom { readonly get; set; }

Property Value

double

Left

Gets or sets the width, in pixels, of the left side of the bounding rectangle.

public double Left { readonly get; set; }

Property Value

double

Right

Gets or sets the width, in pixels, of the right side of the bounding rectangle.

public double Right { readonly get; set; }

Property Value

double

Top

Gets or sets the width, in pixels, of the upper side of the bounding rectangle.

public double Top { readonly get; set; }

Property Value

double