當前位置: 首頁>>代碼示例>>Java>>正文


Java Side.RIGHT屬性代碼示例

本文整理匯總了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
    }
}
 
開發者ID:teamfx,項目名稱:openjfx-8u-dev-tests,代碼行數:7,代碼來源:LegendSideAlignmentCssStyle.java

示例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);
    }
}
 
開發者ID:teamfx,項目名稱:openjfx-8u-dev-tests,代碼行數:9,代碼來源:AxisSideAlignmentCssStyle.java

示例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;
    }
}
 
開發者ID:Heverton,項目名稱:grapheditor,代碼行數:17,代碼來源:GraphEditorDemoController.java

示例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;
    }
}
 
開發者ID:Heverton,項目名稱:grapheditor,代碼行數:20,代碼來源:DefaultConnectorTypes.java


注:本文中的javafx.geometry.Side.RIGHT屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。