public OTTextLine(int yPosition, bool createWord)
 {
     this.yPosition = yPosition;
     word           = null;
     if (createWord)
     {
         Word();
     }
 }
Exemple #2
0
 public OTTextLine(int yPosition, bool createWord, int lineHeight)
 {
     this.yPosition  = yPosition;
     this.lineHeight = lineHeight;
     word            = null;
     if (createWord)
     {
         Word();
     }
 }
Exemple #3
0
 void Word()
 {
     words.Add(new OTTextWord());
     word = words[words.Count-1];
 }
Exemple #4
0
 public OTTextLine(int yPosition, bool createWord, int lineHeight)
 {
     this.yPosition = yPosition;
     this.lineHeight = lineHeight;
     word = null;
     if (createWord)
         Word();
 }
Exemple #5
0
 void Word()
 {
     words.Add(new OTTextWord());
     word = words[words.Count - 1];
 }
Exemple #6
0
 public OTTextLine(int yPosition, bool createWord)
 {
     this.yPosition = yPosition;
     word = null;
     if (createWord)
         Word();
 }