本文整理汇总了Java中javafx.geometry.Side.RIGHT属性的典型用法代码示例。如果您正苦于以下问题:Java Side.RIGHT属性的具体用法?Java Side.RIGHT怎么用?Java Side.RIGHT使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类javafx.geometry.Side
的用法示例。
在下文中一共展示了Side.RIGHT属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: decorate
@Override
public void decorate(Node control, Pane container) {
super.decorate(control, container);
if (side == Side.LEFT || side == Side.RIGHT) {
((Chart) control).setMinWidth(250); // set minimal size for control, because lenegd dosn't fit
}
}
示例2: decorate
@Override
public void decorate(Node control, Pane container) {
super.decorate(control, container);
if (side == Side.LEFT || side == Side.RIGHT) {
((XYChart) control).getYAxis().setStyle(style);
} else {
((XYChart) control).getXAxis().setStyle(style);
}
}
示例3: getSelectedConnectorPosition
/**
* Gets the side corresponding to the currently selected connector position in the menu.
*
* @return the {@link Side} corresponding to the currently selected connector position
*/
private Side getSelectedConnectorPosition() {
if (leftConnectorPositionButton.isSelected()) {
return Side.LEFT;
} else if (rightConnectorPositionButton.isSelected()) {
return Side.RIGHT;
} else if (topConnectorPositionButton.isSelected()) {
return Side.TOP;
} else {
return Side.BOTTOM;
}
}
示例4: getSide
/**
* Gets the side corresponding to the given connector type.
*
* @param type a non-null connector type
* @return the {@link Side} the connector type is on
*/
public static Side getSide(final String type) {
if (isTop(type)) {
return Side.TOP;
} else if (isRight(type)) {
return Side.RIGHT;
} else if (isBottom(type)) {
return Side.BOTTOM;
} else if (isLeft(type)) {
return Side.LEFT;
} else {
return null;
}
}