Table of Contents

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 float

The start X coordinate

startY float

The start Y coordinate

endX float

The end X coordinate

endY float

The end Y coordinate

Properties

EndX

Gets or sets the end X coordinate

public float EndX { get; set; }

Property Value

float

EndY

Gets or sets the end Y coordinate

public float EndY { get; set; }

Property Value

float

StartX

Gets or sets the start X coordinate

public float StartX { get; set; }

Property Value

float

StartY

Gets or sets the start Y coordinate

public float StartY { get; set; }

Property Value

float