接口 IConnectorFormat
public interface IConnectorFormat
代表适用于连接器的属性和方法。
-
方法概要
修饰符和类型方法说明void
beginConnect
(IShape connectedShape, int connectionSite) 附加指定的连接器起始部分到一个指定的形状。void
分离指定连接器的起始部分与其附着的形状。void
endConnect
(IShape connectedShape, int connectionSite) 将指定连接器的末端附着到一个特定的形状。void
将指定连接器的末端从它所连接的形状上分离。boolean
获取连接器是否连接到某个形状(如果指定连接器的起始端连接到了一个形状,则返回True)。返回表示指定连接器起始端所附着的形状的IShape
对象。int
返回一个整数,指定连接器起始点连接到的连接点。boolean
获取连接器末端是否连接到一个形状(如果指定连接器的末端连接到一个形状则返回True)。返回表示指定连接器末尾所附形状的IShape
对象。int
返回一个整数,指定连接器的末端连接到的连接点。getType()
获取连接器格式类型。void
setType
(ConnectorType value) 设置连接器格式类型。
-
方法详细资料
-
getBeginConnected
boolean getBeginConnected()获取连接器是否连接到某个形状(如果指定连接器的起始端连接到了一个形状,则返回True)。 -
getBeginConnectedShape
IShape getBeginConnectedShape()返回表示指定连接器起始端所附着的形状的IShape
对象。 -
getBeginConnectionSite
int getBeginConnectionSite()返回一个整数,指定连接器起始点连接到的连接点。 -
getEndConnected
boolean getEndConnected()获取连接器末端是否连接到一个形状(如果指定连接器的末端连接到一个形状则返回True)。 -
getEndConnectedShape
IShape getEndConnectedShape()返回表示指定连接器末尾所附形状的IShape
对象。 -
getEndConnectionSite
int getEndConnectionSite()返回一个整数,指定连接器的末端连接到的连接点。 -
getType
ConnectorType getType()获取连接器格式类型。 -
setType
设置连接器格式类型。 -
beginConnect
附加指定的连接器起始部分到一个指定的形状。 -
beginDisconnect
void beginDisconnect()分离指定连接器的起始部分与其附着的形状。 -
endConnect
将指定连接器的末端附着到一个特定的形状。 -
endDisconnect
void endDisconnect()将指定连接器的末端从它所连接的形状上分离。
-