|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectaspose.pdf.Paragraph
aspose.pdf.Graph
public class Graph
Represents a graph Paragraph.
Typical usages are the following:
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class aspose.pdf.Paragraph |
|---|
Paragraph.VerticalPositionInfo |
| Field Summary |
|---|
| Fields inherited from class aspose.pdf.Paragraph |
|---|
_realPageNumber, INNER_INDENT, isNeedAddToPage, isPositionProcessed, VerticalPosInfo |
| Constructor Summary | |
|---|---|
Graph()
Constructor - initializes a new instance of the Graph class. |
|
Graph(float width,
float height)
Constructor - initializes a new instance of the Graph class. |
|
Graph(HeaderFooter hf)
Constructor - initializes a new instance of the Graph class. |
|
Graph(HeaderFooter hf,
float width,
float height)
Constructor - initializes a new instance of the Graph class. |
|
Graph(Section section)
Constructor - initializes a new instance of the Graph class. |
|
Graph(Section section,
float width,
float height)
Constructor - initializes a new instance of the Graph class. |
|
| Method Summary | |
|---|---|
java.lang.Object |
completeClone()
Clones a new Graph object. |
AlignmentType |
getAlignment()
Gets a AlignmentType that indicates the paragraph alignment type. |
ClippingPath |
getClippingPath()
Returns a contour clipping an area of graph that will be visible. |
float |
getGraphHeight()
Gets a float value that indicates the graph height. |
GraphicState |
getGraphicState()
Gets or sets a GraphicState object that indicates the
graphic state for this text. |
GraphInfo |
getGraphInfo()
Gets a GraphInfo object that indicates the graph info. |
GraphNotes |
getGraphNotes()
Gets a GraphNotes collection that indicates all notes in the graph. |
float |
getGraphWidth()
Gets a float value that indicates the graph width. |
Hyperlink |
getHyperlink()
Gets a Hyperlink object that indicates the hyper link info of the graph. |
float |
getRotatingAngle()
Gets or a float value that indicates the rotation angle of the coordinate system when transforming a coordinate system. |
Shapes |
getShapes()
Gets a Shapes collection that indicates all shapes in the graph. |
TextInfo |
getTextInfo()
Gets a TextInfo object that indicates the text info of
the graph title. |
java.lang.String |
getTitle()
Gets a String value that indicates the title of the graph. |
int |
getZIndex()
Gets an int value that indicates the Z-order of the graph. |
boolean |
isFootLine()
Gets a boolean value that indicates whether or not the current graph is a foot line for footnote. |
boolean |
isNeedRepeating()
Gets a boolean value that indicates whether the paragraph need to be repeated on next page. |
void |
setAlignment(AlignmentType paraAlignment)
Sets a AlignmentType that indicates the paragraph alignment type. |
void |
setClippingPath(ClippingPath clippingPath)
Sets a contour clipping an area of graph that will be visible. |
void |
setGraphHeight(float height)
Gets a float value that indicates the graph height. |
void |
setGraphicState(GraphicState value)
Gets or sets a GraphicState object that indicates the
graphic state for this text. |
void |
setGraphInfo(GraphInfo graphInfo)
Sets a GraphInfo object that indicates the graph info. |
void |
setGraphNotes(GraphNotes notes)
Sets a GraphNotes collection that indicates all notes in the graph. |
void |
setGraphWidth(float width)
Sets a float value that indicates the graph width. |
void |
setHyperlink(Hyperlink hyperlinkInfo)
Sets a Hyperlink object that indicates the hyper link info of the graph. |
void |
setIsFootLine(boolean isFootLine)
Sets a boolean value that indicates whether or not the current graph is a foot line for footnote. |
void |
setIsNeedRepeating(boolean isNeedRepeating)
Sets a boolean value that indicates whether the paragraph need to be repeated on next page. |
void |
setRotatingAngle(float rotatingAngle)
Sets or sets a float value that indicates the rotation angle of the coordinate system when transforming a coordinate system. |
void |
setShapes(Shapes shapesInGraph)
Sets a Shapes collection that indicates all shapes in the graph. |
void |
setTextInfo(TextInfo graphTitleInfo)
Sets a TextInfo object that indicates the text info of
the graph title. |
void |
setTitle(java.lang.String graphTitle)
Sets a String value that indicates the title of the graph. |
void |
setZIndex(int z_index)
Sets an int value that indicates the Z-order of the graph. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Graph()
Graph class.
public Graph(float width,
float height)
Graph class.
width - The width of the graph.height - The height of the graph.public Graph(Section section)
Graph class.
section - The specified Section object.
public Graph(Section section,
float width,
float height)
Graph class.
section - The specified Section object.width - The width of the graph.height - The height of the graph.public Graph(HeaderFooter hf)
Graph class.
hf - The specified HeaderFooter object.
public Graph(HeaderFooter hf,
float width,
float height)
Graph class.
hf - The specified HeaderFooter object.width - The width of the graph.height - The height of the graph.| Method Detail |
|---|
public GraphInfo getGraphInfo()
GraphInfo object that indicates the graph info.
GraphInfo object.public void setGraphInfo(GraphInfo graphInfo)
GraphInfo object that indicates the graph info.
graphInfo - A GraphInfo object.public boolean isNeedRepeating()
public void setIsNeedRepeating(boolean isNeedRepeating)
isNeedRepeating - A boolean value.public Hyperlink getHyperlink()
Hyperlink object that indicates the hyper link info of the graph.
Hyperlink object.public void setHyperlink(Hyperlink hyperlinkInfo)
Hyperlink object that indicates the hyper link info of the graph.
hyperlinkInfo - A Hyperlink object.public Shapes getShapes()
Shapes collection that indicates all shapes in the graph.
Shapes collection.public void setShapes(Shapes shapesInGraph)
Shapes collection that indicates all shapes in the graph.
shapesInGraph - A Shapes collection.public AlignmentType getAlignment()
AlignmentType object.public void setAlignment(AlignmentType paraAlignment)
paraAlignment - An AlignmentType object.public java.lang.String getTitle()
public void setTitle(java.lang.String graphTitle)
graphTitle - Title name.public TextInfo getTextInfo()
TextInfo object that indicates the text info of
the graph title.
TextInfo object.public void setTextInfo(TextInfo graphTitleInfo)
TextInfo object that indicates the text info of
the graph title.
graphTitleInfo - A TextInfo object.public GraphNotes getGraphNotes()
GraphNotes collection that indicates all notes in the graph.
public void setGraphNotes(GraphNotes notes)
GraphNotes collection that indicates all notes in the graph.
notes - A @link GraphNotes} object.public float getGraphWidth()
public void setGraphWidth(float width)
width - A float value.public float getGraphHeight()
public void setGraphHeight(float height)
height - A float value.public boolean isFootLine()
public void setIsFootLine(boolean isFootLine)
isFootLine - A boolean value.public int getZIndex()
public void setZIndex(int z_index)
z_index - An int value.public java.lang.Object completeClone()
Graph object. Both format and shapes are cloned.
completeClone in class ParagraphGraph object.public float getRotatingAngle()
public void setRotatingAngle(float rotatingAngle)
rotatingAngle - A float value.public ClippingPath getClippingPath()
public void setClippingPath(ClippingPath clippingPath)
public void setGraphicState(GraphicState value)
GraphicState object that indicates the
graphic state for this text.
public GraphicState getGraphicState()
GraphicState object that indicates the
graphic state for this text.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||