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
Properties
BottomColor
Gets or sets the bottom border color.
public PdfColor BottomColor { get; set; }
Property Value
BottomWidth
Gets or sets the bottom border width in points.
public float BottomWidth { get; set; }
Property Value
HasBorder
Gets a value indicating whether any border side has a non-zero width.
public bool HasBorder { get; }
Property Value
LeftColor
Gets or sets the left border color.
public PdfColor LeftColor { get; set; }
Property Value
LeftWidth
Gets or sets the left border width in points.
public float LeftWidth { get; set; }
Property Value
RightColor
Gets or sets the right border color.
public PdfColor RightColor { get; set; }
Property Value
RightWidth
Gets or sets the right border width in points.
public float RightWidth { get; set; }
Property Value
TopColor
Gets or sets the top border color.
public PdfColor TopColor { get; set; }
Property Value
TopWidth
Gets or sets the top border width in points.
public float TopWidth { get; set; }
Property Value
Methods
Clone()
Creates a deep copy of this border style.
public BorderStyle Clone()
Returns
- BorderStyle
A cloned instance.