📄 mxconstants.java
字号:
*/ public static String STYLE_INDICATOR_SPACING = "indicatorSpacing"; /** * Defines the key for the indicatorWidth style (in px). */ public static String STYLE_INDICATOR_WIDTH = "indicatorWidth"; /** * Defines the key for the indicatorHeight style (in px). */ public static String STYLE_INDICATOR_HEIGHT = "indicatorHeight"; /** * Defines the key for the shadow style. * Possible values are true or false. */ public static String STYLE_SHADOW = "shadow"; /** * Defines the key for the endArrow style. * Possible values are all constants in this * class that start with ARROW_. This style is * supported in the mxConnector shape. */ public static String STYLE_ENDARROW = "endArrow"; /** * Defines the key for the startArrow style. * Possible values are all constants in this * class that start with ARROW_. * See STYLE_ENDARROW. * This style is supported in the mxConnector shape. */ public static String STYLE_STARTARROW = "startArrow"; /** * Defines the key for the endSize style (in px). */ public static String STYLE_ENDSIZE = "endSize"; /** * Defines the key for the startSize style (in px). */ public static String STYLE_STARTSIZE = "startSize"; /** * Defines the key for the dashed style. * Possible values are true or false. */ public static String STYLE_DASHED = "dashed"; /** * Defines the key for the rounded style. * Possible values are true or false. */ public static String STYLE_ROUNDED = "rounded"; /** * Defines the key for the source perimeter spacing (in px). * This is the distance between the source connection point of an edge and * the the perimeter of the source vertex. */ public static String STYLE_SOURCE_PERIMETER_SPACING = "sourcePerimeterSpacing"; /** * Defines the key for the source perimeter spacing (in px). * This is the distance between the target connection point of an edge and * the the perimeter of the target vertex. */ public static String STYLE_TARGET_PERIMETER_SPACING = "targetPerimeterSpacing"; /** * Defines the key for the perimeter spacing (in px). * This is the distance between connection point and the perimeter. */ public static String STYLE_PERIMETER_SPACING = "perimeterSpacing"; /** * Defines the key for the spacing (in px). The * spacings below are added to this value on each * side when appropriate. */ public static String STYLE_SPACING = "spacing"; /** * Defines the key for the spacingTop style (in px). */ public static String STYLE_SPACING_TOP = "spacingTop"; /** * Defines the key for the spacingLeft style (in px). */ public static String STYLE_SPACING_LEFT = "spacingLeft"; /** * Defines the key for the spacingBottom style (in px). */ public static String STYLE_SPACING_BOTTOM = "spacingBottom"; /** * Defines the key for the spacingRight style (in px). */ public static String STYLE_SPACING_RIGHT = "spacingRight"; /** * Defines the key for the horizontal style. * Possible values are true or false. */ public static String STYLE_HORIZONTAL = "horizontal"; /** * Defines the key for the direction style. The direction style is used * to specify the direction of certain shapes (eg. mxTriangle). * Possible values are DIRECTION_EAST (default), DIRECTION_WEST, * DIRECTION_NORTH> and DIRECTION_SOUTH. */ public static String STYLE_DIRECTION = "direction"; /** * Defines the key for the elbow style. * Possible values are "horizontal" and "vertical". * Default is "horizontal". */ public static String STYLE_ELBOW = "elbow"; /** * Defines the key for the fontColor style. * Possible values are all color codes. */ public static String STYLE_FONTCOLOR = "fontColor"; /** * Defines the key for the fontFamily style. * Possible values are names such as Arial; * Dialog; Verdana; Times New Roman. */ public static String STYLE_FONTFAMILY = "fontFamily"; /** * Defines the key for the fontSize style (in pt). */ public static String STYLE_FONTSIZE = "fontSize"; /** * Defines the key for the fontStyle style. * Values may be any logical AND (sum) of * FONT_BOLD, FONT_ITALIC, * FONT_UNDERLINE and FONT_SHADOW. */ public static String STYLE_FONTSTYLE = "fontStyle"; /** * Defines the key for the shape style. * Possible values are any of the SHAPE_* * constants. */ public static String STYLE_SHAPE = "shape"; /** * Takes a function that creates points. Possible values are the * functions defined in mxEdgeStyle. */ public static String STYLE_EDGE = "edgeStyle"; /** * Defines the key for the loop style. Possible values are the * functions defined in mxEdgeStyle. */ public static String STYLE_LOOP = "loopStyle"; /** * Defines the key for the horizontal routing center. Possible values are * between -0.5 and 0.5. This is the relative offset from the center used * for connecting edges. */ public static String STYLE_ROUTING_CENTER_X = "routingCenterX"; /** * Defines the key for the vertical routing center. Possible values are * between -0.5 and 0.5. This is the relative offset from the center used * for connecting edges. */ public static String STYLE_ROUTING_CENTER_Y = "routingCenterY"; /** * FONT_BOLD */ public static final int FONT_BOLD = 1; /** * FONT_ITALIC */ public static final int FONT_ITALIC = 2; /** * FONT_UNDERLINE */ public static final int FONT_UNDERLINE = 4; /** * FONT_SHADOW */ public static final int FONT_SHADOW = 8; /** * SHAPE_RECTANGLE */ public static final String SHAPE_RECTANGLE = "rectangle"; /** * SHAPE_ELLIPSE */ public static final String SHAPE_ELLIPSE = "ellipse"; /** * SHAPE_DOUBLE_ELLIPSE */ public static final String SHAPE_DOUBLE_ELLIPSE = "doubleEllipse"; /** * SHAPE_RHOMBUS */ public static final String SHAPE_RHOMBUS = "rhombus"; /** * SHAPE_LINE */ public static final String SHAPE_LINE = "line"; /** * SHAPE_IMAGE */ public static final String SHAPE_IMAGE = "image"; /** * SHAPE_ARROW */ public static final String SHAPE_ARROW = "arrow"; /** * SHAPE_LABEL */ public static final String SHAPE_LABEL = "label"; /** * SHAPE_CYLINDER */ public static final String SHAPE_CYLINDER = "cylinder"; /** * SHAPE_SWIMLANE */ public static final String SHAPE_SWIMLANE = "swimlane"; /** * SHAPE_CONNECTOR */ public static final String SHAPE_CONNECTOR = "connector"; /** * SHAPE_ACTOR */ public static final String SHAPE_ACTOR = "actor"; /** * SHAPE_CLOUD */ public static final String SHAPE_CLOUD = "cloud"; /** * SHAPE_TRIANGLE */ public static final String SHAPE_TRIANGLE = "triangle"; /** * SHAPE_HEXAGON */ public static final String SHAPE_HEXAGON = "hexagon"; /** * ARROW_CLASSIC */ public static final String ARROW_CLASSIC = "classic"; /** * ARROW_BLOCK */ public static final String ARROW_BLOCK = "block"; /** * ARROW_OPEN */ public static final String ARROW_OPEN = "open"; /** * ARROW_BLOCK */ public static final String ARROW_OVAL = "oval"; /** * ARROW_OPEN */ public static final String ARROW_DIAMOND = "diamond"; /** * ALIGN_LEFT */ public static final String ALIGN_LEFT = "left"; /** * ALIGN_CENTER */ public static final String ALIGN_CENTER = "center"; /** * ALIGN_RIGHT */ public static final String ALIGN_RIGHT = "right"; /** * ALIGN_TOP */ public static final String ALIGN_TOP = "top"; /** * ALIGN_MIDDLE */ public static final String ALIGN_MIDDLE = "middle"; /** * ALIGN_BOTTOM */ public static final String ALIGN_BOTTOM = "bottom"; /** * DIRECTION_NORTH */ public static final String DIRECTION_NORTH = "north"; /** * DIRECTION_SOUTH */ public static final String DIRECTION_SOUTH = "south"; /** * DIRECTION_EAST */ public static final String DIRECTION_EAST = "east"; /** * DIRECTION_WEST */ public static final String DIRECTION_WEST = "west"; /** * ELBOW_VERTICAL */ public static final String ELBOW_VERTICAL = "vertical"; /** * ELBOW_HORIZONTAL */ public static final String ELBOW_HORIZONTAL = "horizontal"; /** * Name of the elbow edge style. Can be used as a string value * for the STYLE_EDGE style. */ public static final String EDGESTYLE_ELBOW = "elbowEdgeStyle"; /** * Name of the entity relation edge style. Can be used as a string value * for the STYLE_EDGE style. */ public static final String EDGESTYLE_ENTITY_RELATION = "entityRelationEdgeStyle"; /** * Name of the loop edge style. Can be used as a string value * for the STYLE_EDGE style. */ public static final String EDGESTYLE_LOOP = "loopEdgeStyle"; /** * Name of the side to side edge style. Can be used as a string value * for the STYLE_EDGE style. */ public static final String EDGESTYLE_SIDETOSIDE = "sideToSideEdgeStyle"; /** * Name of the top to bottom edge style. Can be used as a string value * for the STYLE_EDGE style. */ public static final String EDGESTYLE_TOPTOBOTTOM = "topToBottomEdgeStyle"; /** * Name of the ellipse perimeter. Can be used as a string value * for the STYLE_PERIMETER style. */ public static final String PERIMETER_ELLIPSE = "ellipsePerimeter"; /** * Name of the rectangle perimeter. Can be used as a string value * for the STYLE_PERIMETER style. */ public static final String PERIMETER_RECTANGLE = "rectanglePerimeter"; /** * Name of the rhombus perimeter. Can be used as a string value * for the STYLE_PERIMETER style. */ public static final String PERIMETER_RHOMBUS = "rhombusPerimeter"; /** * Name of the triangle perimeter. Can be used as a string value * for the STYLE_PERIMETER style. */ public static final String PERIMETER_TRIANGLE = "trianglePerimeter";}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -