Class Word
A word.
public class Word
- Inheritance
-
Word
- Inherited Members
Constructors
Word(IReadOnlyList<Letter>)
Create a new Word.
public Word(IReadOnlyList<Letter> letters)
Parameters
letters
IReadOnlyList<Letter>The letters contained in the word, in the correct order.
Properties
BoundingBox
The rectangle completely containing the word.
public PdfRectangle BoundingBox { get; }
Property Value
FontName
The name of the font for the word.
public string FontName { get; }
Property Value
Letters
The letters contained in the word.
public IReadOnlyList<Letter> Letters { get; }
Property Value
Text
The text of the word.
public string Text { get; }
Property Value
TextOrientation
The text orientation of the word.
public TextOrientation TextOrientation { get; }
Property Value
Methods
ToString()
public override string ToString()