本文整理匯總了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;
}
}