Table of Contents

Class LineStyle

Namespace
EvoPdf
Assembly
evohtmltopdf.dll

The line style for a graphic element which draws lines

[ClassInterface(ClassInterfaceType.AutoDual)]
public class LineStyle
Inheritance
LineStyle
Inherited Members

Constructors

LineStyle()

Constructs a default line style

public LineStyle()

LineStyle(LineDashStyle)

Constructs a style for a dashed line

public LineStyle(LineDashStyle lineDashStyle)

Parameters

lineDashStyle LineDashStyle

The dash style

LineStyle(float)

Constructs a line style with the specified line width

public LineStyle(float lineWidth)

Parameters

lineWidth float

The line width

LineStyle(float, LineCapStyle, LineJoinStyle)

Constructs a style for a line with the specified width, cap and join styles

public LineStyle(float lineWidth, LineCapStyle lineCapStyle, LineJoinStyle lineJoinStyle)

Parameters

lineWidth float

The line width in graphic units

lineCapStyle LineCapStyle

The line cap style

lineJoinStyle LineJoinStyle

The line join style

LineStyle(float, LineDashStyle)

Constructs a style for a dashed line

public LineStyle(float lineWidth, LineDashStyle lineDashStyle)

Parameters

lineWidth float

The line width

lineDashStyle LineDashStyle

The dash style

Properties

LineCapStyle

Gets or sets the line cap style

public LineCapStyle LineCapStyle { get; set; }

Property Value

LineCapStyle

LineDashStyle

Gets or sets the line dash pattern

public LineDashStyle LineDashStyle { get; set; }

Property Value

LineDashStyle

LineJoinStyle

Gets or sets the line join style

public LineJoinStyle LineJoinStyle { get; set; }

Property Value

LineJoinStyle

LineWidth

The line width

public float LineWidth { get; set; }

Property Value

float