|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IRemoteLineShape
This class is a subclass of the Shape class, and it represents a line shape on a page.
Creation and access
Field Summary | |
---|---|
static java.lang.String |
ARROW_STYLE_ARROW
|
static java.lang.String |
ARROW_STYLE_ARROW_CONCAVE
|
static java.lang.String |
ARROW_STYLE_CIRCLE
|
static java.lang.String |
ARROW_STYLE_DIMENSION_LINES
|
static java.lang.String |
ARROW_STYLE_DOUBLE_ARROW
|
static java.lang.String |
ARROW_STYLE_LINE_ARROW
|
static java.lang.String |
ARROW_STYLE_ROUNDED_LARGE_ARROW
|
static java.lang.String |
ARROW_STYLE_ROUNDED_SHORT_ARROW
|
static java.lang.String |
ARROW_STYLE_SMALL_ARROW
|
static java.lang.String |
ARROW_STYLE_SQUARE
|
static java.lang.String |
ARROW_STYLE_SQUARE_45
|
static java.lang.String |
ARROW_STYLE_SYMMETRIC_ARROW
|
Method Summary | |
---|---|
int |
getBeginX()
This property returns or sets the X coordinate of the original point of a line in 1/100th mm. |
int |
getBeginY()
This property returns or sets the Y coordinate of the original point of a line in 1/100th mm. |
int |
getEndX()
This property returns or sets the X coordinate of the end point of a line in 1/100th mm. |
int |
getEndY()
This property returns or sets the Y coordinate of the end point of a line in 1/100th mm. |
void |
setBeginStyle(java.lang.String lineStartName)
This method sets the beginning style of a line. |
void |
setBeginStyle(java.lang.String lineStartName,
int width)
This method sets the beginning style of a line. |
void |
setBeginX(int beginX)
This property returns or sets the X coordinate of the original point of a line in 1/100th mm. |
void |
setBeginY(int beginY)
This property returns or sets the Y coordinate of the original point of a line in 1/100th mm. |
void |
setEndStyle(java.lang.String lineEndName)
This method sets the ending style of a line. |
void |
setEndStyle(java.lang.String lineEndName,
int width)
This method sets the ending style of a line. |
void |
setEndX(int endX)
This property returns or sets the X coordinate of the end point of a line in 1/100th mm. |
void |
setEndY(int endY)
This property returns or sets the Y coordinate of the end point of a line in 1/100th mm. |
Methods inherited from interface com.mindoo.remote.api.symphony.presentation.IRemoteShape |
---|
copy, cut, exportToImage, getApplication, getAttributes, getContent, getFillFormat, getHeight, getLeft, getLineFormat, getMoveProtect, getName, getParagraphs, getRotateAngle, getShadowFormat, getShearAngle, getSizeProtect, getTop, getType, getWidth, getZOrder, isShadowEnable, remove, setHeight, setLeft, setMoveProtect, setName, setRotateAngle, setShadowEnable, setShearAngle, setSizeProtect, setTop, setWidth, setZOrder |
Field Detail |
---|
static final java.lang.String ARROW_STYLE_ARROW
static final java.lang.String ARROW_STYLE_SQUARE
static final java.lang.String ARROW_STYLE_SMALL_ARROW
static final java.lang.String ARROW_STYLE_DIMENSION_LINES
static final java.lang.String ARROW_STYLE_DOUBLE_ARROW
static final java.lang.String ARROW_STYLE_ROUNDED_SHORT_ARROW
static final java.lang.String ARROW_STYLE_SYMMETRIC_ARROW
static final java.lang.String ARROW_STYLE_LINE_ARROW
static final java.lang.String ARROW_STYLE_ROUNDED_LARGE_ARROW
static final java.lang.String ARROW_STYLE_CIRCLE
static final java.lang.String ARROW_STYLE_SQUARE_45
static final java.lang.String ARROW_STYLE_ARROW_CONCAVE
Method Detail |
---|
void setBeginStyle(java.lang.String lineStartName, int width) throws RemoteEclipseAPIException
lineStartName
- Specifies the style name. The name is a constant and can be one of the following values:Constant | Value | Description |
---|---|---|
LineShape.ARROW_STYLE_ARROW | "Arrow" | |
LineShape.ARROW_STYLE_SQUARE | "Square" | |
LineShape.ARROW_STYLE_SMALL_ARROW | "Small Arrow" | |
LineShape.ARROW_STYLE_DIMENSION_LINES | "Dimension Lines" | |
LineShape.ARROW_STYLE_DOUBLE_ARROW | "Double Arrow" | |
LineShape.ARROW_STYLE_ROUNDED_SHORT_ARROW | "Rounded short Arrow" | |
LineShape.ARROW_STYLE_SYMMETRIC_ARROW | "Symmetric Arrow" | |
LineShape.ARROW_STYLE_LINE_ARROW | "Line Arrow" | |
LineShape.ARROW_STYLE_ROUNDED_LARGE_ARROW | "Rounded large Arrow" | |
LineShape.ARROW_STYLE_CIRCLE | "Circle" | |
LineShape.ARROW_STYLE_SQUARE_45 | "Square 45" | |
LineShape.ARROW_STYLE_ARROW_CONCAVE | "Arrow concave" |
width
- Specifies the width of the beginning style in 1/100th mm.
RemoteEclipseAPIException
void setEndStyle(java.lang.String lineEndName, int width) throws RemoteEclipseAPIException
lineEndName
- Specifies the style name. The name is a constant and can be one of the following values:Constant | Value | Description |
---|---|---|
LineShape.ARROW_STYLE_ARROW | "Arrow" | |
LineShape.ARROW_STYLE_SQUARE | "Square" | |
LineShape.ARROW_STYLE_SMALL_ARROW | "Small Arrow" | |
LineShape.ARROW_STYLE_DIMENSION_LINES | "Dimension Lines" | |
LineShape.ARROW_STYLE_DOUBLE_ARROW | "Double Arrow" | |
LineShape.ARROW_STYLE_ROUNDED_SHORT_ARROW | "Rounded short Arrow" | |
LineShape.ARROW_STYLE_SYMMETRIC_ARROW | "Symmetric Arrow" | |
LineShape.ARROW_STYLE_LINE_ARROW | "Line Arrow" | |
LineShape.ARROW_STYLE_ROUNDED_LARGE_ARROW | "Rounded large Arrow" | |
LineShape.ARROW_STYLE_CIRCLE | "Circle" | |
LineShape.ARROW_STYLE_SQUARE_45 | "Square 45" | |
LineShape.ARROW_STYLE_ARROW_CONCAVE | "Arrow concave" |
width
- Specifies the width of the ending style in 1/100th mm.
RemoteEclipseAPIException
void setBeginStyle(java.lang.String lineStartName) throws RemoteEclipseAPIException
lineStartName
- Specifies the style name. The name is a constant and can be one of the following values:Constant | Value | Description |
---|---|---|
LineShape.ARROW_STYLE_ARROW | "Arrow" | |
LineShape.ARROW_STYLE_SQUARE | "Square" | |
LineShape.ARROW_STYLE_SMALL_ARROW | "Small Arrow" | |
LineShape.ARROW_STYLE_DIMENSION_LINES | "Dimension Lines" | |
LineShape.ARROW_STYLE_DOUBLE_ARROW | "Double Arrow" | |
LineShape.ARROW_STYLE_ROUNDED_SHORT_ARROW | "Rounded short Arrow" | |
LineShape.ARROW_STYLE_SYMMETRIC_ARROW | "Symmetric Arrow" | |
LineShape.ARROW_STYLE_LINE_ARROW | "Line Arrow" | |
LineShape.ARROW_STYLE_ROUNDED_LARGE_ARROW | "Rounded large Arrow" | |
LineShape.ARROW_STYLE_CIRCLE | "Circle" | |
LineShape.ARROW_STYLE_SQUARE_45 | "Square 45" | |
LineShape.ARROW_STYLE_ARROW_CONCAVE | "Arrow concave" |
RemoteEclipseAPIException
void setEndStyle(java.lang.String lineEndName) throws RemoteEclipseAPIException
lineEndName
- Specifies the style name. The name is a constant and can be one of the following values:Constant | Value | Description |
---|---|---|
LineShape.ARROW_STYLE_ARROW | "Arrow" | |
LineShape.ARROW_STYLE_SQUARE | "Square" | |
LineShape.ARROW_STYLE_SMALL_ARROW | "Small Arrow" | |
LineShape.ARROW_STYLE_DIMENSION_LINES | "Dimension Lines" | |
LineShape.ARROW_STYLE_DOUBLE_ARROW | "Double Arrow" | |
LineShape.ARROW_STYLE_ROUNDED_SHORT_ARROW | "Rounded short Arrow" | |
LineShape.ARROW_STYLE_SYMMETRIC_ARROW | "Symmetric Arrow" | |
LineShape.ARROW_STYLE_LINE_ARROW | "Line Arrow" | |
LineShape.ARROW_STYLE_ROUNDED_LARGE_ARROW | "Rounded large Arrow" | |
LineShape.ARROW_STYLE_CIRCLE | "Circle" | |
LineShape.ARROW_STYLE_SQUARE_45 | "Square 45" | |
LineShape.ARROW_STYLE_ARROW_CONCAVE | "Arrow concave" |
RemoteEclipseAPIException
int getBeginX() throws RemoteEclipseAPIException
RemoteEclipseAPIException
void setBeginX(int beginX) throws RemoteEclipseAPIException
beginX
- x
RemoteEclipseAPIException
int getBeginY() throws RemoteEclipseAPIException
RemoteEclipseAPIException
void setBeginY(int beginY) throws RemoteEclipseAPIException
beginY
- y
RemoteEclipseAPIException
int getEndX() throws RemoteEclipseAPIException
RemoteEclipseAPIException
void setEndX(int endX) throws RemoteEclipseAPIException
endX
-
RemoteEclipseAPIException
int getEndY() throws RemoteEclipseAPIException
RemoteEclipseAPIException
void setEndY(int endY) throws RemoteEclipseAPIException
endY
- y
RemoteEclipseAPIException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |