/** * @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) { }
/** * * @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; }