Word

Word()

Initializes new instance of Word class.

public Word()

See Also


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

Initializes new instance of Word class.

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

Exceptions

exception condition
ArgumentException Thrown when word is null or empty.
ArgumentNullException Thrown when characters is null.

See Also