Java javax.swing.text TabStop fields, constructors, methods, implement or subclass

Example usage for Java javax.swing.text TabStop fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing.text TabStop.

The text is from its open source code.

Field

intALIGN_LEFT
Character following tab is positioned at location.
intALIGN_RIGHT
Characters following tab are positioned such that all following characters up to next tab/newline end at location.
intALIGN_CENTER
Characters following tab are positioned such that all following characters up to next tab/newline are centered around the tabs location.
intALIGN_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.
intALIGN_BAR
Align bar
intLEAD_NONE
Lead none
intLEAD_DOTS
Lead dots

Constructor

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.