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