|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.lowagie.text.Chunk
com.lowagie.text.rtf.RtfAddableElement
com.lowagie.text.rtf.graphic.RtfShapeProperty
public class RtfShapeProperty
The RtfShapeProperty stores all shape properties that are
not handled by the RtfShape and RtfShapePosition.
There is a huge selection of properties that can be set. For
the most important properites there are constants for the
property name, for all others you must find the correct
property name in the RTF specification (version 1.6).
The following types of property values are supported:
Field Summary | |
---|---|
private java.lang.String |
name
The RtfShapeProperty name. |
static java.lang.String |
PROPERTY_ADJUST_VALUE
Property for defining the first adjust handle for shapes. |
static java.lang.String |
PROPERTY_FILL_COLOR
Property for defining the fill color of the shape. |
static java.lang.String |
PROPERTY_FLIP_H
Property for signalling a horizontal flip of the shape. |
static java.lang.String |
PROPERTY_FLIP_V
Property for signalling a vertical flip of the shape. |
static java.lang.String |
PROPERTY_GEO_BOTTOM
Property for defining the maximum vertical coordinate that is visible. |
static java.lang.String |
PROPERTY_GEO_LEFT
Property for defining the minimum horizontal coordinate that is visible. |
static java.lang.String |
PROPERTY_GEO_RIGHT
Property for defining the maximum horizontal coordinate that is visible. |
static java.lang.String |
PROPERTY_GEO_TOP
Property for defining the minimum vertical coordinate that is visible. |
static java.lang.String |
PROPERTY_LAYOUT_IN_CELL
Property for defining that the shape is in a table cell. |
static java.lang.String |
PROPERTY_LINE_COLOR
Property for defining the line color of the shape. |
private static int |
PROPERTY_TYPE_ARRAY
The stored value is either an int or a Point array. |
private static int |
PROPERTY_TYPE_BOOLEAN
The stored value is boolean. |
private static int |
PROPERTY_TYPE_COLOR
The stored value is a Color. |
private static int |
PROPERTY_TYPE_DOUBLE
The stored value is a double. |
private static int |
PROPERTY_TYPE_LONG
The stored value is a long. |
static java.lang.String |
PROPERTY_VERTICIES
Property for defining vertices in freeform shapes. |
private int |
type
The value type. |
private java.lang.Object |
value
The RtfShapeProperty value. |
Fields inherited from class com.lowagie.text.rtf.RtfAddableElement |
---|
doc, inHeader, inTable |
Fields inherited from class com.lowagie.text.Chunk |
---|
ACTION, attributes, BACKGROUND, COLOR, content, ENCODING, font, GENERICTAG, HSCALE, HYPHENATION, IMAGE, LOCALDESTINATION, LOCALGOTO, markupAttributes, NEWLINE, NEWPAGE, NEXTPAGE, OBJECT_REPLACEMENT_CHARACTER, PDFANNOTATION, REMOTEGOTO, SKEW, SPLITCHARACTER, SUBSUPSCRIPT, TEXTRENDERMODE, UNDERLINE |
Fields inherited from interface com.lowagie.text.rtf.RtfBasicElement |
---|
CLOSE_GROUP, COMMA_DELIMITER, DELIMITER, OPEN_GROUP, TWIPS_FACTOR |
Constructor Summary | |
---|---|
|
RtfShapeProperty(java.lang.String name,
boolean value)
Constructs a RtfShapeProperty with a boolean value. |
|
RtfShapeProperty(java.lang.String name,
java.awt.Color value)
Constructs a RtfShapeProperty with a Color value. |
|
RtfShapeProperty(java.lang.String name,
double value)
Constructs a RtfShapeProperty with a double value. |
|
RtfShapeProperty(java.lang.String name,
int[] value)
Constructs a RtfShapeProperty with an int array value. |
|
RtfShapeProperty(java.lang.String name,
long value)
Constructs a RtfShapeProperty with a long value. |
private |
RtfShapeProperty(java.lang.String name,
java.lang.Object value)
Internaly used to create the RtfShape. |
|
RtfShapeProperty(java.lang.String name,
java.awt.Point[] value)
Constructs a RtfShapeProperty with a Point array value. |
Method Summary | |
---|---|
java.lang.String |
getName()
Gets the name of this RtfShapeProperty. |
byte[] |
write()
Writes the property definition. |
Methods inherited from class com.lowagie.text.rtf.RtfAddableElement |
---|
intToByteArray, setInHeader, setInTable, setRtfDocument |
Methods inherited from class com.lowagie.text.Chunk |
---|
addToArray, append, content, font, getAttributes, getChunks, getHorizontalScaling, getImage, getKeySet, getMarkupAttribute, getMarkupAttributeNames, getMarkupAttributes, getTextRise, getWidthPoint, hasAttributes, isEmpty, isTag, process, setAction, setAnchor, setAnchor, setAnnotation, setBackground, setBackground, setFont, setGenericTag, setHorizontalScaling, setHyphenation, setLocalDestination, setLocalGoto, setMarkupAttribute, setMarkupAttributes, setNewPage, setRemoteGoto, setRemoteGoto, setSkew, setSplitCharacter, setTextRenderMode, setTextRise, setUnderline, setUnderline, toString, type |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String PROPERTY_VERTICIES
public static final java.lang.String PROPERTY_GEO_TOP
public static final java.lang.String PROPERTY_GEO_LEFT
public static final java.lang.String PROPERTY_GEO_RIGHT
public static final java.lang.String PROPERTY_GEO_BOTTOM
public static final java.lang.String PROPERTY_LAYOUT_IN_CELL
public static final java.lang.String PROPERTY_FLIP_V
public static final java.lang.String PROPERTY_FLIP_H
public static final java.lang.String PROPERTY_FILL_COLOR
public static final java.lang.String PROPERTY_LINE_COLOR
public static final java.lang.String PROPERTY_ADJUST_VALUE
private static final int PROPERTY_TYPE_LONG
private static final int PROPERTY_TYPE_BOOLEAN
private static final int PROPERTY_TYPE_DOUBLE
private static final int PROPERTY_TYPE_COLOR
private static final int PROPERTY_TYPE_ARRAY
private int type
private java.lang.String name
private java.lang.Object value
Constructor Detail |
---|
private RtfShapeProperty(java.lang.String name, java.lang.Object value)
name
- The property name to use.value
- The property value to use.public RtfShapeProperty(java.lang.String name, long value)
name
- The property name to use.value
- The long value to use.public RtfShapeProperty(java.lang.String name, double value)
name
- The property name to use.value
- The double value to use.public RtfShapeProperty(java.lang.String name, boolean value)
name
- The property name to use.value
- The boolean value to use.public RtfShapeProperty(java.lang.String name, java.awt.Color value)
name
- The property name to use.value
- The Color value to use.public RtfShapeProperty(java.lang.String name, int[] value)
name
- The property name to use.value
- The int array to use.public RtfShapeProperty(java.lang.String name, java.awt.Point[] value)
name
- The property name to use.value
- The Point array to use.Method Detail |
---|
public java.lang.String getName()
public byte[] write()
write
in interface RtfBasicElement
write
in class RtfAddableElement
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |