Class LineElement
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class represents a line element that can be added to a PDF document
[ClassInterface(ClassInterfaceType.AutoDual)]
public class LineElement : PageGraphicElement
- Inheritance
-
LineElement
- Inherited Members
Constructors
LineElement(float, float, float, float)
Constructs a line element
public LineElement(float startX, float startY, float endX, float endY)
Parameters
startX
floatThe start X coordinate
startY
floatThe start Y coordinate
endX
floatThe end X coordinate
endY
floatThe end Y coordinate
Properties
EndX
Gets or sets the end X coordinate
public float EndX { get; set; }
Property Value
EndY
Gets or sets the end Y coordinate
public float EndY { get; set; }
Property Value
StartX
Gets or sets the start X coordinate
public float StartX { get; set; }
Property Value
StartY
Gets or sets the start Y coordinate
public float StartY { get; set; }