Inheritance: IDrawInterface, IElement
Exemple #1
0
 /**
  * @param verticalPositionMark the drawInterface to use to draw the tab. tabPosition an X
  * @param parseToPt that will be used as start position for the next Chunk.
  * @param b if true, a newline will be added if the tabPosition has already
  * been reached.
  */
 public TabbedChunk(VerticalPositionMark verticalPositionMark,
         float parseToPt, bool b) : base(verticalPositionMark, parseToPt, b) {
 }
Exemple #2
0
 /**
  *
  * @param verticalPositionMark the drawInterface used to draw the tab. tabPosition an X
  * @param parseToPt that will be used as start position for the next Chunk.
  * @param b if true, a newline will be added if the tabPosition has already
  * been reached.
  * @param alignment the alignment
  */
 public TabbedChunk(VerticalPositionMark verticalPositionMark,
         float parseToPt, bool b, String alignment) : base(verticalPositionMark, parseToPt, b) {
     this.alignment = alignment;
 }