| java.lang.Object com.lowagie.text.rtf.RtfElement com.lowagie.text.rtf.table.RtfBorderGroup
RtfBorderGroup | public class RtfBorderGroup extends RtfElement (Code) | | The RtfBorderGroup represents a collection of RtfBorders to use in a RtfCell
or RtfTable.
version: $Id: RtfBorderGroup.java 2776 2007-05-23 20:01:40Z hallm $ author: Mark Hall (mhall@edu.uni-klu.ac.at) author: Thomas Bickel (tmb99@inode.at) |
RtfBorderGroup | public RtfBorderGroup()(Code) | | Constructs an empty RtfBorderGroup.
|
RtfBorderGroup | public RtfBorderGroup(int bordersToAdd, int borderStyle, float borderWidth, Color borderColor)(Code) | | Constructs a RtfBorderGroup with on border style for multiple borders.
Parameters: bordersToAdd - The borders to add (Rectangle.LEFT, Rectangle.RIGHT, Rectangle.TOP, Rectangle.BOTTOM, Rectangle.BOX) Parameters: borderStyle - The style of border to add (from RtfBorder) Parameters: borderWidth - The border width to use Parameters: borderColor - The border color to use |
RtfBorderGroup | protected RtfBorderGroup(RtfDocument doc, int borderType, RtfBorderGroup borderGroup)(Code) | | Constructs a RtfBorderGroup based on another RtfBorderGroup.
Parameters: doc - The RtfDocument this RtfBorderGroup belongs to Parameters: borderType - The type of borders this RtfBorderGroup contains Parameters: borderGroup - The RtfBorderGroup to use as a base |
RtfBorderGroup | protected RtfBorderGroup(RtfDocument doc, int borderType, int bordersToUse, float borderWidth, Color borderColor)(Code) | | Constructs a RtfBorderGroup with certain borders
Parameters: doc - The RtfDocument this RtfBorderGroup belongs to Parameters: borderType - The type of borders this RtfBorderGroup contains Parameters: bordersToUse - The borders to add (Rectangle.LEFT, Rectangle.RIGHT, Rectangle.TOP, Rectangle.BOTTOM, Rectangle.BOX) Parameters: borderWidth - The border width to use Parameters: borderColor - The border color to use |
addBorder | public void addBorder(int bordersToAdd, int borderStyle, float borderWidth, Color borderColor)(Code) | | Adds borders to the RtfBorderGroup
Parameters: bordersToAdd - The borders to add (Rectangle.LEFT, Rectangle.RIGHT, Rectangle.TOP, Rectangle.BOTTOM, Rectangle.BOX) Parameters: borderStyle - The style of border to add (from RtfBorder) Parameters: borderWidth - The border width to use Parameters: borderColor - The border color to use |
getBorders | protected Hashtable getBorders()(Code) | | Gets the RtfBorders of this RtfBorderGroup
The RtfBorders of this RtfBorderGroup |
removeBorder | public void removeBorder(int bordersToRemove)(Code) | | Removes borders from the list of borders
Parameters: bordersToRemove - The borders to remove (from Rectangle) |
|
|