Example usage for Java javax.swing.text TabStop fields, constructors, methods, implement or subclass
The text is from its open source code.
int | ALIGN_LEFT Character following tab is positioned at location. |
int | ALIGN_RIGHT Characters following tab are positioned such that all following characters up to next tab/newline end at location. |
int | ALIGN_CENTER Characters following tab are positioned such that all following characters up to next tab/newline are centered around the tabs location. |
int | ALIGN_DECIMAL Characters following tab are aligned such that next decimal/tab/newline is at the tab location, very similar to RIGHT_TAB, just includes decimal as additional character to look for. |
int | ALIGN_BAR Align bar |
int | LEAD_NONE Lead none |
int | LEAD_DOTS Lead dots |
TabStop(float pos, int align, int leader) Creates a tab with the specified position pos , alignment align and leader leader . | |
TabStop(float pos) Creates a tab at position pos with a default alignment and default leader. |