public class ShapeType
extends java.lang.Object
Examples:
Shows how to insert a shape with an image from the local file system into a document.
Document doc = new Document();
// The "Shape" class's public constructor will create a shape with "ShapeMarkupLanguage.Vml" markup type.
// If you need to create a shape of a non-primitive type, such as SingleCornerSnipped, TopCornersSnipped, DiagonalCornersSnipped,
// TopCornersOneRoundedOneSnipped, SingleCornerRounded, TopCornersRounded, or DiagonalCornersRounded,
// please use DocumentBuilder.InsertShape.
Shape shape = new Shape(doc, ShapeType.IMAGE);
shape.getImageData().setImage(getImageDir() + "Windows MetaFile.wmf");
shape.setWidth(100.0);
shape.setHeight(100.0);
doc.getFirstSection().getBody().getFirstParagraph().appendChild(shape);
doc.save(getArtifactsDir() + "Image.FromFile.docx");
Shows how Aspose.Words identify shapes.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertShape(ShapeType.HEPTAGON, RelativeHorizontalPosition.PAGE, 0.0,
RelativeVerticalPosition.PAGE, 0.0, 0.0, 0.0, WrapType.NONE);
builder.insertShape(ShapeType.CLOUD, RelativeHorizontalPosition.RIGHT_MARGIN, 0.0,
RelativeVerticalPosition.PAGE, 0.0, 0.0, 0.0, WrapType.NONE);
builder.insertShape(ShapeType.MATH_PLUS, RelativeHorizontalPosition.RIGHT_MARGIN, 0.0,
RelativeVerticalPosition.PAGE, 0.0, 0.0, 0.0, WrapType.NONE);
// To correct identify shape types you need to work with shapes as DML.
OoxmlSaveOptions saveOptions = new OoxmlSaveOptions(SaveFormat.DOCX);
{
// "Strict" or "Transitional" compliance allows to save shape as DML.
saveOptions.setCompliance(OoxmlCompliance.ISO_29500_2008_TRANSITIONAL);
}
doc.save(getArtifactsDir() + "Shape.ShapeTypes.docx", saveOptions);
doc = new Document(getArtifactsDir() + "Shape.ShapeTypes.docx");
List<Shape> shapes = Arrays.stream(doc.getChildNodes(NodeType.SHAPE, true).toArray())
.filter(Shape.class::isInstance)
.map(Shape.class::cast)
.collect(Collectors.toList());
for (Shape shape : shapes)
{
System.out.println(shape.getShapeType());
}
ShapeBase.getShapeType()| Modifier and Type | Field and Description |
|---|---|
static int |
ACCENT_BORDER_CALLOUT_1
Accent border callout 1.
|
static int |
ACCENT_BORDER_CALLOUT_2
Accent border callout 2.
|
static int |
ACCENT_BORDER_CALLOUT_3
Accent border callout 3.
|
static int |
ACCENT_BORDER_CALLOUT_90
Accent border callout 90.
|
static int |
ACCENT_CALLOUT_1
An accent callout shape with one arrow.
|
static int |
ACCENT_CALLOUT_2
An accent callout shape with two arrows.
|
static int |
ACCENT_CALLOUT_3
An accent callout shape with three arrows.
|
static int |
ACCENT_CALLOUT_90
Accent callout 90.
|
static int |
ACTION_BUTTON_BACK_PREVIOUS
Action button back previous.
|
static int |
ACTION_BUTTON_BEGINNING
Action button beginning.
|
static int |
ACTION_BUTTON_BLANK
Action button blank.
|
static int |
ACTION_BUTTON_DOCUMENT
Action button document.
|
static int |
ACTION_BUTTON_END
Action button end.
|
static int |
ACTION_BUTTON_FORWARD_NEXT
Action button forward next.
|
static int |
ACTION_BUTTON_HELP
Action button help.
|
static int |
ACTION_BUTTON_HOME
Action button home.
|
static int |
ACTION_BUTTON_INFORMATION
Action button information.
|
static int |
ACTION_BUTTON_MOVIE
Action button movie.
|
static int |
ACTION_BUTTON_RETURN
Action button return.
|
static int |
ACTION_BUTTON_SOUND
Action button sound.
|
static int |
ARC
Arc.
|
static int |
ARROW
Arrow.
|
static int |
BALLOON
Balloon.
|
static int |
BENT_ARROW
Bent arrow.
|
static int |
BENT_CONNECTOR_2
A bent connector shape with two segments.
|
static int |
BENT_CONNECTOR_3
A bent connector shape with three segments.
|
static int |
BENT_CONNECTOR_4
A bent connector shape with four segments.
|
static int |
BENT_CONNECTOR_5
A bent connector shape with five segments.
|
static int |
BENT_UP_ARROW
Bent up arrow.
|
static int |
BEVEL
Bevel.
|
static int |
BLOCK_ARC
Block arc.
|
static int |
BORDER_CALLOUT_1
Border callout 1.
|
static int |
BORDER_CALLOUT_2
Border callout 2.
|
static int |
BORDER_CALLOUT_3
Border callout 3.
|
static int |
BORDER_CALLOUT_90
Border callout 90.
|
static int |
BRACE_PAIR
Brace pair
|
static int |
BRACKET_PAIR
Bracket pair.
|
static int |
CALLOUT_1
A callout shape with one arrow.
|
static int |
CALLOUT_2
A callout shape with two arrows.
|
static int |
CALLOUT_3
A callout shape with three arrows.
|
static int |
CALLOUT_90
Callout 90.
|
static int |
CAN
Can.
|
static int |
CHART_PLUS
Chart plus.
|
static int |
CHART_STAR
Chart star.
|
static int |
CHART_X
Chart X.
|
static int |
CHEVRON
Chevron.
|
static int |
CHORD
Chord.
|
static int |
CIRCULAR_ARROW
Circular arrow.
|
static int |
CLOUD
Cloud.
|
static int |
CLOUD_CALLOUT
Cloud callout.
|
static int |
CORNER
Corner.
|
static int |
CORNER_TABS
Corner tabs.
|
static int |
CUBE
Cube.
|
static int |
CURVED_CONNECTOR_2
A curved connector shape with two segments.
|
static int |
CURVED_CONNECTOR_3
A curved connector shape with three segments.
|
static int |
CURVED_CONNECTOR_4
A curved connector shape with four segments.
|
static int |
CURVED_CONNECTOR_5
A curved connector shape with five segments.
|
static int |
CURVED_DOWN_ARROW
Curved down arrow.
|
static int |
CURVED_LEFT_ARROW
Curved left arrow.
|
static int |
CURVED_RIGHT_ARROW
Curved right arrow.
|
static int |
CURVED_UP_ARROW
Curved up arrow
|
static int |
CUSTOM_SHAPE
This shape type seems to be set for shapes that are not part of the standard set of the auto shapes in Microsoft Word.
|
static int |
DECAGON
Decagon.
|
static int |
DIAGONAL_CORNERS_ROUNDED
Round diagonal corner rectangle.
|
static int |
DIAGONAL_CORNERS_SNIPPED
Snip diagonal corner rectangle.
|
static int |
DIAGONAL_STRIPE
Diagonal stripe.
|
static int |
DIAMOND
Diamond.
|
static int |
DODECAGON
Dodecagon.
|
static int |
DONUT
Donut.
|
static int |
DOUBLE_WAVE
Double wave.
|
static int |
DOWN_ARROW
Down arrow.
|
static int |
DOWN_ARROW_CALLOUT
Down arrow callout.
|
static int |
ELLIPSE
Ellipse.
|
static int |
ELLIPSE_RIBBON
Ellipse ribbon.
|
static int |
ELLIPSE_RIBBON_2
Ellipse ribbon 2.
|
static int |
FLOW_CHART_ALTERNATE_PROCESS
Flow chart alternate process.
|
static int |
FLOW_CHART_COLLATE
Flow chart collate.
|
static int |
FLOW_CHART_CONNECTOR
Flow chart connector.
|
static int |
FLOW_CHART_DECISION
Flow chart decision.
|
static int |
FLOW_CHART_DELAY
Flow chart delay.
|
static int |
FLOW_CHART_DISPLAY
Flow chart display.
|
static int |
FLOW_CHART_DOCUMENT
Flow chart document.
|
static int |
FLOW_CHART_EXTRACT
Flow chart extract.
|
static int |
FLOW_CHART_INPUT_OUTPUT
Flow chart input output.
|
static int |
FLOW_CHART_INTERNAL_STORAGE
Flow chart internal storage.
|
static int |
FLOW_CHART_MAGNETIC_DISK
Flow chart magnetic disk.
|
static int |
FLOW_CHART_MAGNETIC_DRUM
Flow chart magnetic drum.
|
static int |
FLOW_CHART_MAGNETIC_TAPE
Flow char magnetic tape.
|
static int |
FLOW_CHART_MANUAL_INPUT
Flow chart manual input.
|
static int |
FLOW_CHART_MANUAL_OPERATION
Flow chart manual operation.
|
static int |
FLOW_CHART_MERGE
Flow chart merge.
|
static int |
FLOW_CHART_MULTIDOCUMENT
Flow chart multi document.
|
static int |
FLOW_CHART_OFFLINE_STORAGE
Flow chart off-line storage.
|
static int |
FLOW_CHART_OFFPAGE_CONNECTOR
Flow chart off page connector.
|
static int |
FLOW_CHART_ONLINE_STORAGE
Flow chart on-line storage.
|
static int |
FLOW_CHART_OR
Flow chart or.
|
static int |
FLOW_CHART_PREDEFINED_PROCESS
Flow chart predefined process
|
static int |
FLOW_CHART_PREPARATION
Flow chart preparation.
|
static int |
FLOW_CHART_PROCESS
Flow chart process.
|
static int |
FLOW_CHART_PUNCHED_CARD
Flow chart punched card.
|
static int |
FLOW_CHART_PUNCHED_TAPE
Flow chart punched tape.
|
static int |
FLOW_CHART_SORT
Flow chart sort.
|
static int |
FLOW_CHART_SUMMING_JUNCTION
Flow chart summing junction.
|
static int |
FLOW_CHART_TERMINATOR
Flow chart terminator.
|
static int |
FOLDED_CORNER
Folded corner.
|
static int |
FRAME
Frame.
|
static int |
FUNNEL
Funnel.
|
static int |
GEAR_6
Six-tooth gear.
|
static int |
GEAR_9
Nine-tooth gear.
|
static int |
GROUP
The shape is a group shape.
|
static int |
HALF_FRAME
Half frame.
|
static int |
HEART
Heart.
|
static int |
HEPTAGON
Heptagon.
|
static int |
HEXAGON
Hexagon.
|
static int |
HOME_PLATE
Home plate.
|
static int |
HORIZONTAL_SCROLL
Horizontal scroll.
|
static int |
IMAGE
The shape is an image.
|
static int |
INVERSE_LINE
Inverse line.
|
static int |
IRREGULAR_SEAL_1
Irregular seal 1.
|
static int |
IRREGULAR_SEAL_2
Irregular seal 2.
|
static int |
LEFT_ARROW
Left arrow.
|
static int |
LEFT_ARROW_CALLOUT
Left arrow callout.
|
static int |
LEFT_BRACE
Left brace.
|
static int |
LEFT_BRACKET
Left bracket.
|
static int |
LEFT_CIRCULAR_ARROW
Left circular arrow.
|
static int |
LEFT_RIGHT_ARROW
Left right arrow.
|
static int |
LEFT_RIGHT_ARROW_CALLOUT
Left right arrow callout.
|
static int |
LEFT_RIGHT_CIRCULAR_ARROW
Left-right circular arrow.
|
static int |
LEFT_RIGHT_RIBBON
Left-right ribbon.
|
static int |
LEFT_RIGHT_UP_ARROW
Left right up arrow.
|
static int |
LEFT_UP_ARROW
Left up arrow.
|
static int |
length |
static int |
LIGHTNING_BOLT
Lightning bolt.
|
static int |
LINE
Line.
|
static int |
MATH_DIVIDE
Math divide.
|
static int |
MATH_EQUAL
Math equal.
|
static int |
MATH_MINUS
Math minus.
|
static int |
MATH_MULTIPLY
Math multiply.
|
static int |
MATH_NOT_EQUAL
Math not equal.
|
static int |
MATH_PLUS
Math plus.
|
static int |
MIN_VALUE
Reserved for the system use.
|
static int |
MOON
Moon.
|
static int |
NO_SMOKING
NoSmoking.
|
static int |
NON_ISOSCELES_TRAPEZOID
Non-isosceles trapezoid.
|
static int |
NON_PRIMITIVE
A shape drawn by user and consisting of multiple segments and/or vertices (curve, freeform or scribble).
|
static int |
NOTCHED_RIGHT_ARROW
Notched right arrow.
|
static int |
OCTAGON
Octagon.
|
static int |
OLE_CONTROL
The shape is an ActiveX control.
|
static int |
OLE_OBJECT
The shape is an OLE object.
|
static int |
PARALLELOGRAM
Parallelogram.
|
static int |
PENTAGON
Pentagon.
|
static int |
PIE
Pie.
|
static int |
PLAQUE
Plaque.
|
static int |
PLAQUE_TABS
Plaque tabs.
|
static int |
PLUS
Plus.
|
static int |
QUAD_ARROW
Quad arrow.
|
static int |
QUAD_ARROW_CALLOUT
Quad arrow callout.
|
static int |
RECTANGLE
Rectangle.
|
static int |
RIBBON
Ribbon.
|
static int |
RIBBON_2
Ribbon 2.
|
static int |
RIGHT_ARROW_CALLOUT
Right arrow callout
|
static int |
RIGHT_BRACE
Right brace.
|
static int |
RIGHT_BRACKET
Right bracket.
|
static int |
RIGHT_TRIANGLE
Right triangle.
|
static int |
ROUND_RECTANGLE
Round rectangle.
|
static int |
SEAL
Seal.
|
static int |
SEAL_10
Ten-pointed star.
|
static int |
SEAL_12
Twelve-pointed star.
|
static int |
SEAL_16
16-pointed star.
|
static int |
SEAL_24
24-pointed star.
|
static int |
SEAL_32
32-pointed star.
|
static int |
SEAL_4
Four-pointed star.
|
static int |
SEAL_6
Six-pointed star.
|
static int |
SEAL_7
Seven-pointed star.
|
static int |
SEAL_8
Eight-pointed star.
|
static int |
SINGLE_CORNER_ROUNDED
Round single corner rectangle.
|
static int |
SINGLE_CORNER_SNIPPED
Snip single corner rectangle object.
|
static int |
SMILEY_FACE
Smiley face.
|
static int |
SQUARE_TABS
Square tabs.
|
static int |
STAR
Star.
|
static int |
STRAIGHT_CONNECTOR_1
A straight connector shape.
|
static int |
STRIPED_RIGHT_ARROW
Striped right arrow.
|
static int |
SUN
Sun.
|
static int |
SWOOSH_ARROW
Swoosh arrow.
|
static int |
TEARDROP
Teardrop.
|
static int |
TEXT_ARCH_DOWN_CURVE
Arch down curve, WordArt object.
|
static int |
TEXT_ARCH_DOWN_POUR
Arch down pour, WordArt object.
|
static int |
TEXT_ARCH_UP_CURVE
Arch up curve, WordArt object.
|
static int |
TEXT_ARCH_UP_POUR
Arch up pour, WordArt object.
|
static int |
TEXT_BOX
The shape is a textbox.
|
static int |
TEXT_BUTTON_CURVE
Button curve, WordArt object.
|
static int |
TEXT_BUTTON_POUR
Button pour, WordArt object.
|
static int |
TEXT_CAN_DOWN
Can down, WordArt object.
|
static int |
TEXT_CAN_UP
Can up, WordArt object.
|
static int |
TEXT_CASCADE_DOWN
Cascade down, WordArt object.
|
static int |
TEXT_CASCADE_UP
Cascade up, WordArt object.
|
static int |
TEXT_CHEVRON
Chevron, WordArt object.
|
static int |
TEXT_CHEVRON_INVERTED
Chevron inverted, WordArt object.
|
static int |
TEXT_CIRCLE_CURVE
Circle curve, WordArt object.
|
static int |
TEXT_CIRCLE_POUR
Circle pour, WordArt object.
|
static int |
TEXT_CURVE
Text curve.
|
static int |
TEXT_CURVE_DOWN
Curve down, WordArt object.
|
static int |
TEXT_CURVE_UP
Curve up, WordArt object.
|
static int |
TEXT_DEFLATE
Deflate, WordArt object.
|
static int |
TEXT_DEFLATE_BOTTOM
Deflate bottom, WordArt object.
|
static int |
TEXT_DEFLATE_INFLATE
Deflate inflate, WordArt object.
|
static int |
TEXT_DEFLATE_INFLATE_DEFLATE
Deflate inflate deflate, WordArt object.
|
static int |
TEXT_DEFLATE_TOP
Deflate top, WordArt object.
|
static int |
TEXT_FADE_DOWN
Fade down, WordArt object.
|
static int |
TEXT_FADE_LEFT
Fade left, WordArt object.
|
static int |
TEXT_FADE_RIGHT
Fade right, WordArt object.
|
static int |
TEXT_FADE_UP
Fade up, WordArt object.
|
static int |
TEXT_HEXAGON
Text hexagon.
|
static int |
TEXT_INFLATE
Inflate, WordArt object.
|
static int |
TEXT_INFLATE_BOTTOM
Inflate bottom, WordArt object.
|
static int |
TEXT_INFLATE_TOP
Inflate top, WordArt object.
|
static int |
TEXT_OCTAGON
Text octagon.
|
static int |
TEXT_ON_CURVE
Text on curve.
|
static int |
TEXT_ON_RING
Text on ring.
|
static int |
TEXT_PLAIN_TEXT
Plain-text, WordArt object.
|
static int |
TEXT_RING
Text ring.
|
static int |
TEXT_RING_INSIDE
Ring inside, WordArt object.
|
static int |
TEXT_RING_OUTSIDE
Ring outside, WordArt object.
|
static int |
TEXT_SIMPLE
Text simple.
|
static int |
TEXT_SLANT_DOWN
Slant down, WordArt object.
|
static int |
TEXT_SLANT_UP
Slant up, WordArt object.
|
static int |
TEXT_STOP
Stop, WordArt object.
|
static int |
TEXT_TRIANGLE
Triangle, WordArt object.
|
static int |
TEXT_TRIANGLE_INVERTED
Triangle inverted, WordArt object.
|
static int |
TEXT_WAVE
Text wave.
|
static int |
TEXT_WAVE_1
Wave 1, WordArt object.
|
static int |
TEXT_WAVE_2
Wave 2, WordArt object.
|
static int |
TEXT_WAVE_3
Wave 3, WordArt object.
|
static int |
TEXT_WAVE_4
Wave 4, WordArt object.
|
static int |
THICK_ARROW
Thick arrow.
|
static int |
TOP_CORNERS_ONE_ROUNDED_ONE_SNIPPED
Snip and round single corner rectangle.
|
static int |
TOP_CORNERS_ROUNDED
Round same side corner rectangle.
|
static int |
TOP_CORNERS_SNIPPED
Snip same side corner rectangle.
|
static int |
TRAPEZOID
Trapezoid.
|
static int |
TRIANGLE
Triangle.
|
static int |
UP_ARROW
Up arrow.
|
static int |
UP_ARROW_CALLOUT
Up arrow callout.
|
static int |
UP_DOWN_ARROW
Up down arrow.
|
static int |
UP_DOWN_ARROW_CALLOUT
Up down arrow callout.
|
static int |
UTURN_ARROW
Uturn arrow.
|
static int |
VERTICAL_SCROLL
Vertical scroll.
|
static int |
WAVE
Wave.
|
static int |
WEDGE_ELLIPSE_CALLOUT
Wedge ellipse callout.
|
static int |
WEDGE_PIE
Wedge pie.
|
static int |
WEDGE_R_RECT_CALLOUT
Wedge R rect callout.
|
static int |
WEDGE_RECT_CALLOUT
Wedge rect callout.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
fromName(java.lang.String shapeTypeName) |
static java.lang.String |
getName(int shapeType) |
static int[] |
getValues() |
static java.lang.String |
toString(int shapeType) |
public static int IMAGE
public static int TEXT_BOX
public static int GROUP
The shape is a group shape.
public static int OLE_OBJECT
You cannot create shapes of this type in the document.
public static int OLE_CONTROL
You cannot create shapes of this type in the document.
public static int NON_PRIMITIVE
You cannot create shapes of this type in the document.
public static int RECTANGLE
public static int ROUND_RECTANGLE
public static int ELLIPSE
public static int DIAMOND
public static int TRIANGLE
public static int RIGHT_TRIANGLE
public static int PARALLELOGRAM
public static int TRAPEZOID
public static int HEXAGON
public static int OCTAGON
public static int PLUS
public static int STAR
public static int ARROW
public static int THICK_ARROW
public static int HOME_PLATE
public static int CUBE
public static int BALLOON
public static int SEAL
public static int ARC
public static int LINE
public static int PLAQUE
public static int CAN
public static int DONUT
public static int TEXT_SIMPLE
public static int TEXT_OCTAGON
public static int TEXT_HEXAGON
public static int TEXT_CURVE
public static int TEXT_WAVE
public static int TEXT_RING
public static int TEXT_ON_CURVE
public static int TEXT_ON_RING
public static int STRAIGHT_CONNECTOR_1
public static int BENT_CONNECTOR_2
public static int BENT_CONNECTOR_3
public static int BENT_CONNECTOR_4
public static int BENT_CONNECTOR_5
public static int CURVED_CONNECTOR_2
public static int CURVED_CONNECTOR_3
public static int CURVED_CONNECTOR_4
public static int CURVED_CONNECTOR_5
public static int CALLOUT_1
public static int CALLOUT_2
public static int CALLOUT_3
public static int ACCENT_CALLOUT_1
public static int ACCENT_CALLOUT_2
public static int ACCENT_CALLOUT_3
public static int BORDER_CALLOUT_1
public static int BORDER_CALLOUT_2
public static int BORDER_CALLOUT_3
public static int ACCENT_BORDER_CALLOUT_1
public static int ACCENT_BORDER_CALLOUT_2
public static int ACCENT_BORDER_CALLOUT_3
public static int RIBBON
public static int RIBBON_2
public static int CHEVRON
public static int PENTAGON
public static int NO_SMOKING
public static int SEAL_8
public static int SEAL_16
public static int SEAL_32
public static int WEDGE_RECT_CALLOUT
public static int WEDGE_R_RECT_CALLOUT
public static int WEDGE_ELLIPSE_CALLOUT
public static int WAVE
public static int FOLDED_CORNER
public static int LEFT_ARROW
public static int DOWN_ARROW
public static int UP_ARROW
public static int LEFT_RIGHT_ARROW
public static int UP_DOWN_ARROW
public static int IRREGULAR_SEAL_1
public static int IRREGULAR_SEAL_2
public static int LIGHTNING_BOLT
public static int HEART
public static int QUAD_ARROW
public static int LEFT_ARROW_CALLOUT
public static int RIGHT_ARROW_CALLOUT
public static int UP_ARROW_CALLOUT
public static int DOWN_ARROW_CALLOUT
public static int LEFT_RIGHT_ARROW_CALLOUT
public static int UP_DOWN_ARROW_CALLOUT
public static int QUAD_ARROW_CALLOUT
public static int BEVEL
public static int LEFT_BRACKET
public static int RIGHT_BRACKET
public static int LEFT_BRACE
public static int RIGHT_BRACE
public static int LEFT_UP_ARROW
public static int BENT_UP_ARROW
public static int BENT_ARROW
public static int SEAL_24
public static int STRIPED_RIGHT_ARROW
public static int NOTCHED_RIGHT_ARROW
public static int BLOCK_ARC
public static int SMILEY_FACE
public static int VERTICAL_SCROLL
public static int HORIZONTAL_SCROLL
public static int CIRCULAR_ARROW
public static int CUSTOM_SHAPE
You cannot create shapes of this type in the document.
public static int UTURN_ARROW
public static int CURVED_RIGHT_ARROW
public static int CURVED_LEFT_ARROW
public static int CURVED_UP_ARROW
public static int CURVED_DOWN_ARROW
public static int CLOUD_CALLOUT
public static int ELLIPSE_RIBBON
public static int ELLIPSE_RIBBON_2
public static int FLOW_CHART_PROCESS
public static int FLOW_CHART_DECISION
public static int FLOW_CHART_INPUT_OUTPUT
public static int FLOW_CHART_PREDEFINED_PROCESS
public static int FLOW_CHART_INTERNAL_STORAGE
public static int FLOW_CHART_DOCUMENT
public static int FLOW_CHART_MULTIDOCUMENT
public static int FLOW_CHART_TERMINATOR
public static int FLOW_CHART_PREPARATION
public static int FLOW_CHART_MANUAL_INPUT
public static int FLOW_CHART_MANUAL_OPERATION
public static int FLOW_CHART_CONNECTOR
public static int FLOW_CHART_PUNCHED_CARD
public static int FLOW_CHART_PUNCHED_TAPE
public static int FLOW_CHART_SUMMING_JUNCTION
public static int FLOW_CHART_OR
public static int FLOW_CHART_COLLATE
public static int FLOW_CHART_SORT
public static int FLOW_CHART_EXTRACT
public static int FLOW_CHART_MERGE
public static int FLOW_CHART_OFFLINE_STORAGE
public static int FLOW_CHART_ONLINE_STORAGE
public static int FLOW_CHART_MAGNETIC_TAPE
public static int FLOW_CHART_MAGNETIC_DISK
public static int FLOW_CHART_MAGNETIC_DRUM
public static int FLOW_CHART_DISPLAY
public static int FLOW_CHART_DELAY
public static int TEXT_PLAIN_TEXT
public static int TEXT_STOP
public static int TEXT_TRIANGLE
public static int TEXT_TRIANGLE_INVERTED
public static int TEXT_CHEVRON
public static int TEXT_CHEVRON_INVERTED
public static int TEXT_RING_INSIDE
public static int TEXT_RING_OUTSIDE
public static int TEXT_ARCH_UP_CURVE
public static int TEXT_ARCH_DOWN_CURVE
public static int TEXT_CIRCLE_CURVE
public static int TEXT_BUTTON_CURVE
public static int TEXT_ARCH_UP_POUR
public static int TEXT_ARCH_DOWN_POUR
public static int TEXT_CIRCLE_POUR
public static int TEXT_BUTTON_POUR
public static int TEXT_CURVE_UP
public static int TEXT_CURVE_DOWN
public static int TEXT_CASCADE_UP
public static int TEXT_CASCADE_DOWN
public static int TEXT_WAVE_1
public static int TEXT_WAVE_2
public static int TEXT_WAVE_3
public static int TEXT_WAVE_4
public static int TEXT_INFLATE
public static int TEXT_DEFLATE
public static int TEXT_INFLATE_BOTTOM
public static int TEXT_DEFLATE_BOTTOM
public static int TEXT_INFLATE_TOP
public static int TEXT_DEFLATE_TOP
public static int TEXT_DEFLATE_INFLATE
public static int TEXT_DEFLATE_INFLATE_DEFLATE
public static int TEXT_FADE_RIGHT
public static int TEXT_FADE_LEFT
public static int TEXT_FADE_UP
public static int TEXT_FADE_DOWN
public static int TEXT_SLANT_UP
public static int TEXT_SLANT_DOWN
public static int TEXT_CAN_UP
public static int TEXT_CAN_DOWN
public static int FLOW_CHART_ALTERNATE_PROCESS
public static int FLOW_CHART_OFFPAGE_CONNECTOR
public static int CALLOUT_90
public static int ACCENT_CALLOUT_90
public static int BORDER_CALLOUT_90
public static int ACCENT_BORDER_CALLOUT_90
public static int LEFT_RIGHT_UP_ARROW
public static int SUN
public static int MOON
public static int BRACKET_PAIR
public static int BRACE_PAIR
public static int SEAL_4
public static int DOUBLE_WAVE
public static int ACTION_BUTTON_BLANK
public static int ACTION_BUTTON_HOME
public static int ACTION_BUTTON_HELP
public static int ACTION_BUTTON_INFORMATION
public static int ACTION_BUTTON_FORWARD_NEXT
public static int ACTION_BUTTON_BACK_PREVIOUS
public static int ACTION_BUTTON_END
public static int ACTION_BUTTON_BEGINNING
public static int ACTION_BUTTON_RETURN
public static int ACTION_BUTTON_DOCUMENT
public static int ACTION_BUTTON_SOUND
public static int ACTION_BUTTON_MOVIE
public static int SINGLE_CORNER_SNIPPED
Remarks:
Applicable only for DML shapes.
public static int TOP_CORNERS_SNIPPED
Remarks:
Applicable only for DML shapes.
public static int DIAGONAL_CORNERS_SNIPPED
Remarks:
Applicable only for DML shapes.
public static int TOP_CORNERS_ONE_ROUNDED_ONE_SNIPPED
Remarks:
Applicable only for DML shapes.
public static int SINGLE_CORNER_ROUNDED
Remarks:
Applicable only for DML shapes.
public static int TOP_CORNERS_ROUNDED
Remarks:
Applicable only for DML shapes.
public static int DIAGONAL_CORNERS_ROUNDED
Remarks:
Applicable only for DML shapes.
public static int HEPTAGON
Remarks:
Applicable only for DML shapes.
public static int CLOUD
Remarks:
Applicable only for DML shapes.
public static int SEAL_6
Remarks:
Applicable only for DML shapes.
public static int SEAL_7
Remarks:
Applicable only for DML shapes.
public static int SEAL_10
Remarks:
Applicable only for DML shapes.
public static int SEAL_12
Remarks:
Applicable only for DML shapes.
public static int SWOOSH_ARROW
Remarks:
Applicable only for DML shapes.
public static int TEARDROP
Remarks:
Applicable only for DML shapes.
public static int SQUARE_TABS
Remarks:
Applicable only for DML shapes.
public static int PLAQUE_TABS
Remarks:
Applicable only for DML shapes.
public static int PIE
Remarks:
Applicable only for DML shapes.
public static int WEDGE_PIE
Remarks:
Applicable only for DML shapes.
public static int INVERSE_LINE
Remarks:
Applicable only for DML shapes.
public static int MATH_PLUS
Remarks:
Applicable only for DML shapes.
public static int MATH_MINUS
Remarks:
Applicable only for DML shapes.
public static int MATH_MULTIPLY
Remarks:
Applicable only for DML shapes.
public static int MATH_DIVIDE
Remarks:
Applicable only for DML shapes.
public static int MATH_EQUAL
Remarks:
Applicable only for DML shapes.
public static int MATH_NOT_EQUAL
Remarks:
Applicable only for DML shapes.
public static int NON_ISOSCELES_TRAPEZOID
Remarks:
Applicable only for DML shapes.
public static int LEFT_RIGHT_CIRCULAR_ARROW
Remarks:
Applicable only for DML shapes.
public static int LEFT_RIGHT_RIBBON
Remarks:
Applicable only for DML shapes.
public static int LEFT_CIRCULAR_ARROW
Remarks:
Applicable only for DML shapes.
public static int FRAME
Remarks:
Applicable only for DML shapes.
public static int HALF_FRAME
Remarks:
Applicable only for DML shapes.
public static int FUNNEL
Remarks:
Applicable only for DML shapes.
public static int GEAR_6
Remarks:
Applicable only for DML shapes.
public static int GEAR_9
Remarks:
Applicable only for DML shapes.
public static int DECAGON
Remarks:
Applicable only for DML shapes.
public static int DODECAGON
Remarks:
Applicable only for DML shapes.
public static int DIAGONAL_STRIPE
Remarks:
Applicable only for DML shapes.
public static int CORNER
Remarks:
Applicable only for DML shapes.
public static int CORNER_TABS
Remarks:
Applicable only for DML shapes.
public static int CHORD
Remarks:
Applicable only for DML shapes.
public static int CHART_PLUS
Remarks:
Applicable only for DML shapes.
public static int CHART_STAR
Remarks:
Applicable only for DML shapes.
public static int CHART_X
Remarks:
Applicable only for DML shapes.
public static int MIN_VALUE
public static int length