当前位置: 首页>>代码示例>>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;未经允许,请勿转载。