Line

Line()

Initializes new instance of Line class.

public Line()

See Also


Line(string, double, double, double, double, List<Word>)

Initializes new instance of Line class.

public Line(string line, double x, double y, double width, double height, List<Word> words)
Parameter Type Description
line String The line.
x Double The X coordinate of the highest left point on the page layout where the rectangle that contains line begins.
y Double The Y coordinate of the highest left point on the page layout where the rectangle that contains line begins.
width Double The width of the rectangle which contains the line (in pixels).
height Double The height of the rectangle which contains the line (in pixels).
words List`1 The words contained by the line.

Exceptions

exception condition
ArgumentException Thrown when line is null or empty.
ArgumentNullException Thrown when words is null.

See Also