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
LineDashStyleThe dash style
LineStyle(float)
Constructs a line style with the specified line width
public LineStyle(float lineWidth)
Parameters
lineWidth
floatThe 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
floatThe line width in graphic units
lineCapStyle
LineCapStyleThe line cap style
lineJoinStyle
LineJoinStyleThe line join style
LineStyle(float, LineDashStyle)
Constructs a style for a dashed line
public LineStyle(float lineWidth, LineDashStyle lineDashStyle)
Parameters
lineWidth
floatThe line width
lineDashStyle
LineDashStyleThe dash style
Properties
LineCapStyle
Gets or sets the line cap style
public LineCapStyle LineCapStyle { get; set; }
Property Value
LineDashStyle
Gets or sets the line dash pattern
public LineDashStyle LineDashStyle { get; set; }
Property Value
LineJoinStyle
Gets or sets the line join style
public LineJoinStyle LineJoinStyle { get; set; }
Property Value
LineWidth
The line width
public float LineWidth { get; set; }