Table of Contents

Class BorderStyle

Namespace
SimpleSign.HtmlToPdf.Parsing
Assembly
SimpleSign.HtmlToPdf.dll

Border style for one or all sides of a box.

public sealed class BorderStyle
Inheritance
BorderStyle
Inherited Members

Fields

None

A border style with no borders.

public static readonly BorderStyle None

Field Value

BorderStyle

Properties

BottomColor

Gets or sets the bottom border color.

public PdfColor BottomColor { get; set; }

Property Value

PdfColor

BottomWidth

Gets or sets the bottom border width in points.

public float BottomWidth { get; set; }

Property Value

float

HasBorder

Gets a value indicating whether any border side has a non-zero width.

public bool HasBorder { get; }

Property Value

bool

LeftColor

Gets or sets the left border color.

public PdfColor LeftColor { get; set; }

Property Value

PdfColor

LeftWidth

Gets or sets the left border width in points.

public float LeftWidth { get; set; }

Property Value

float

RightColor

Gets or sets the right border color.

public PdfColor RightColor { get; set; }

Property Value

PdfColor

RightWidth

Gets or sets the right border width in points.

public float RightWidth { get; set; }

Property Value

float

TopColor

Gets or sets the top border color.

public PdfColor TopColor { get; set; }

Property Value

PdfColor

TopWidth

Gets or sets the top border width in points.

public float TopWidth { get; set; }

Property Value

float

Methods

Clone()

Creates a deep copy of this border style.

public BorderStyle Clone()

Returns

BorderStyle

A cloned instance.