Package com.itextpdf.text
Class TabStop
- java.lang.Object
-
- com.itextpdf.text.TabStop
-
public class TabStop extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TabStop.Alignment
-
Field Summary
Fields Modifier and Type Field Description protected TabStop.Alignment
alignment
protected char
anchorChar
protected DrawInterface
leader
protected float
position
-
Constructor Summary
Constructors Constructor Description TabStop(float position)
TabStop(float position, DrawInterface leader)
TabStop(float position, DrawInterface leader, TabStop.Alignment alignment)
TabStop(float position, DrawInterface leader, TabStop.Alignment alignment, char anchorChar)
TabStop(float position, TabStop.Alignment alignment)
TabStop(float position, TabStop.Alignment alignment, char anchorChar)
TabStop(TabStop tabStop)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TabStop.Alignment
getAlignment()
char
getAnchorChar()
DrawInterface
getLeader()
float
getPosition()
float
getPosition(float tabPosition, float currentPosition, float anchorPosition)
static TabStop
newInstance(float currentPosition, float tabInterval)
void
setAlignment(TabStop.Alignment alignment)
void
setAnchorChar(char anchorChar)
void
setLeader(DrawInterface leader)
void
setPosition(float position)
-
-
-
Field Detail
-
position
protected float position
-
alignment
protected TabStop.Alignment alignment
-
leader
protected DrawInterface leader
-
anchorChar
protected char anchorChar
-
-
Constructor Detail
-
TabStop
public TabStop(float position)
-
TabStop
public TabStop(float position, DrawInterface leader)
-
TabStop
public TabStop(float position, TabStop.Alignment alignment)
-
TabStop
public TabStop(float position, TabStop.Alignment alignment, char anchorChar)
-
TabStop
public TabStop(float position, DrawInterface leader, TabStop.Alignment alignment)
-
TabStop
public TabStop(float position, DrawInterface leader, TabStop.Alignment alignment, char anchorChar)
-
TabStop
public TabStop(TabStop tabStop)
-
-
Method Detail
-
newInstance
public static TabStop newInstance(float currentPosition, float tabInterval)
-
getPosition
public float getPosition()
-
setPosition
public void setPosition(float position)
-
getAlignment
public TabStop.Alignment getAlignment()
-
setAlignment
public void setAlignment(TabStop.Alignment alignment)
-
getLeader
public DrawInterface getLeader()
-
setLeader
public void setLeader(DrawInterface leader)
-
getAnchorChar
public char getAnchorChar()
-
setAnchorChar
public void setAnchorChar(char anchorChar)
-
getPosition
public float getPosition(float tabPosition, float currentPosition, float anchorPosition)
-
-