@DefaultProperty(value="text") public abstract class Labeled extends Control
Controlは、ユーザー・インタフェースの一部として関連付けられたテキスト・コンテンツを持ちます。 たとえば、ButtonにはLabelやTooltipなどその他の多くのコントロールと同様に、textが表示されます。
また、Labeledは便利なベース・クラスでもあり、読取り専用のテキスト・コンテンツがUIの一部として表示される新しいコントロールを構築するときに、このクラスをベースに拡張できます。
テキストの上にグラフィックを配置する方法の例を次に示します。
Image image = new Image(getClass().getResourceAsStream("image.png"));
ImageView imageView = new ImageView();
imageView.setImage(image);
Label label = new Label("text", imageView);
label.setContentDisplay(ContentDisplay.TOP);
Button、Label、ToggleButton| Type | プロパティと説明 |
|---|---|
ObjectProperty<Pos> |
alignment
ラベル表示内に空きスペースがある場合の、ラベル表示内のテキストとグラフィックを位置合せする方法を指定します。
|
ObjectProperty<ContentDisplay> |
contentDisplay
テキストに対するグラフィックの相対的な位置決めを指定します。
|
StringProperty |
ellipsisString
テキストが切り捨てられた場合に楕円に表示する文字列を指定します。
|
ObjectProperty<Font> |
font
ラベル表示内のテキストに使用するデフォルト・フォント。
|
ObjectProperty<Node> |
graphic
ラベル表示のオプション・アイコン。
|
DoubleProperty |
graphicTextGap
グラフィックとテキストの間の総スペース
|
ReadOnlyObjectProperty<Insets> |
labelPadding
ラベル表示のテキストおよびグラフィックのコンテンツ周辺の余白。
|
DoubleProperty |
lineSpacing
行間のピクセル単位の空間を指定します。
|
BooleanProperty |
mnemonicParsing
テキストの解析を有効/無効にするMnemonicParsingプロパティ。
|
ObjectProperty<TextAlignment> |
textAlignment
テキストが複数行の場合のテキストの行の動作を指定します。グラフィックとテキストに作用する
contentDisplayProperty()とは異なり、この設定は複数行のテキストのみに、テキスト境界に対して相対的に作用します。 |
ObjectProperty<Paint> |
textFill
テキストを入力するために使用される
Paint。 |
ObjectProperty<OverrunStyle> |
textOverrun
Labeledのテキストが、テキストのレンダリングに使用できるスペースを超過した場合に使用する動作を指定します。 |
StringProperty |
text
ラベルに表示するテキスト。
|
BooleanProperty |
underline
すべてのテキストに下線を付けるかどうか。
|
BooleanProperty |
wrapText
テキストの長さがラベル表示の幅を超える場合に、テキストを別の行に折り返すかどうかをこの変数で示します。
|
contextMenu, skin, tooltipbackground, border, cacheShape, centerShape, height, insets, maxHeight, maxWidth, minHeight, minWidth, opaqueInsets, padding, prefHeight, prefWidth, scaleShape, shape, snapToPixel, widthneedsLayoutaccessibleHelp, accessibleRoleDescription, accessibleRole, accessibleText, blendMode, boundsInLocal, boundsInParent, cacheHint, cache, clip, cursor, depthTest, disabled, disable, effectiveNodeOrientation, effect, eventDispatcher, focused, focusTraversable, hover, id, inputMethodRequests, layoutBounds, layoutX, layoutY, localToParentTransform, localToSceneTransform, managed, mouseTransparent, nodeOrientation, onContextMenuRequested, onDragDetected, onDragDone, onDragDropped, onDragEntered, onDragExited, onDragOver, onInputMethodTextChanged, onKeyPressed, onKeyReleased, onKeyTyped, onMouseClicked, onMouseDragEntered, onMouseDragExited, onMouseDragged, onMouseDragOver, onMouseDragReleased, onMouseEntered, onMouseExited, onMouseMoved, onMousePressed, onMouseReleased, onRotate, onRotationFinished, onRotationStarted, onScrollFinished, onScroll, onScrollStarted, onSwipeDown, onSwipeLeft, onSwipeRight, onSwipeUp, onTouchMoved, onTouchPressed, onTouchReleased, onTouchStationary, onZoomFinished, onZoom, onZoomStarted, opacity, parent, pickOnBounds, pressed, rotate, rotationAxis, scaleX, scaleY, scaleZ, scene, style, translateX, translateY, translateZ, visibleUSE_COMPUTED_SIZE, USE_PREF_SIZEBASELINE_OFFSET_SAME_AS_HEIGHT| コンストラクタと説明 |
|---|
Labeled()
テキストとグラフィックなしでラベルを作成します。
|
Labeled(String text)
テキスト付きでラベルを作成します。
|
Labeled(String text, Node graphic)
テキストとグラフィック付きでラベルを作成します。
|
| 修飾子と型 | メソッドと説明 |
|---|---|
ObjectProperty<Pos> |
alignmentProperty()
ラベル表示内に空きスペースがある場合の、ラベル表示内のテキストとグラフィックを位置合せする方法を指定します。
|
ObjectProperty<ContentDisplay> |
contentDisplayProperty()
テキストに対するグラフィックの相対的な位置決めを指定します。
|
StringProperty |
ellipsisStringProperty()
テキストが切り捨てられた場合に楕円に表示する文字列を指定します。
|
ObjectProperty<Font> |
fontProperty()
ラベル表示内のテキストに使用するデフォルト・フォント。
|
Pos |
getAlignment()
プロパティalignmentの値を取得します。
|
static List<CssMetaData<? extends Styleable,?>> |
getClassCssMetaData() |
Orientation |
getContentBias()
wrapTextがtrueの場合はcontentBiasはHORIZONTALになり、そうでない場合はnullです。
|
ContentDisplay |
getContentDisplay()
プロパティcontentDisplayの値を取得します。
|
List<CssMetaData<? extends Styleable,?>> |
getControlCssMetaData() |
String |
getEllipsisString()
プロパティellipsisStringの値を取得します。
|
Font |
getFont()
プロパティfontの値を取得します。
|
Node |
getGraphic()
プロパティgraphicの値を取得します。
|
double |
getGraphicTextGap()
プロパティgraphicTextGapの値を取得します。
|
Insets |
getLabelPadding()
プロパティlabelPaddingの値を取得します。
|
double |
getLineSpacing()
プロパティlineSpacingの値を取得します。
|
String |
getText()
プロパティtextの値を取得します。
|
TextAlignment |
getTextAlignment()
プロパティtextAlignmentの値を取得します。
|
Paint |
getTextFill()
プロパティtextFillの値を取得します。
|
OverrunStyle |
getTextOverrun()
プロパティtextOverrunの値を取得します。
|
ObjectProperty<Node> |
graphicProperty()
ラベル表示のオプション・アイコン。
|
DoubleProperty |
graphicTextGapProperty()
グラフィックとテキストの間の総スペース
|
boolean |
isMnemonicParsing()
プロパティmnemonicParsingの値を取得します。
|
boolean |
isUnderline()
プロパティunderlineの値を取得します。
|
boolean |
isWrapText()
プロパティwrapTextの値を取得します。
|
ReadOnlyObjectProperty<Insets> |
labelPaddingProperty()
ラベル表示のテキストおよびグラフィックのコンテンツ周辺の余白。
|
DoubleProperty |
lineSpacingProperty()
行間のピクセル単位の空間を指定します。
|
BooleanProperty |
mnemonicParsingProperty()
テキストの解析を有効/無効にするMnemonicParsingプロパティ。
|
void |
setAlignment(Pos value)
プロパティalignmentの値を設定します。
|
void |
setContentDisplay(ContentDisplay value)
プロパティcontentDisplayの値を設定します。
|
void |
setEllipsisString(String value)
プロパティellipsisStringの値を設定します。
|
void |
setFont(Font value)
プロパティfontの値を設定します。
|
void |
setGraphic(Node value)
プロパティgraphicの値を設定します。
|
void |
setGraphicTextGap(double value)
プロパティgraphicTextGapの値を設定します。
|
void |
setLineSpacing(double value)
プロパティlineSpacingの値を設定します。
|
void |
setMnemonicParsing(boolean value)
プロパティmnemonicParsingの値を設定します。
|
void |
setText(String value)
プロパティtextの値を設定します。
|
void |
setTextAlignment(TextAlignment value)
プロパティtextAlignmentの値を設定します。
|
void |
setTextFill(Paint value)
プロパティtextFillの値を設定します。
|
void |
setTextOverrun(OverrunStyle value)
プロパティtextOverrunの値を設定します。
|
void |
setUnderline(boolean value)
プロパティunderlineの値を設定します。
|
void |
setWrapText(boolean value)
プロパティwrapTextの値を設定します。
|
ObjectProperty<TextAlignment> |
textAlignmentProperty()
テキストが複数行の場合のテキストの行の動作を指定します。グラフィックとテキストに作用する
contentDisplayProperty()とは異なり、この設定は複数行のテキストのみに、テキスト境界に対して相対的に作用します。 |
ObjectProperty<Paint> |
textFillProperty()
テキストを入力するために使用される
Paint。 |
ObjectProperty<OverrunStyle> |
textOverrunProperty()
Labeledのテキストが、テキストのレンダリングに使用できるスペースを超過した場合に使用する動作を指定します。 |
StringProperty |
textProperty()
ラベルに表示するテキスト。
|
String |
toString()
オブジェクトの文字列表現を返します。
|
BooleanProperty |
underlineProperty()
すべてのテキストに下線を付けるかどうか。
|
BooleanProperty |
wrapTextProperty()
テキストの長さがラベル表示の幅を超える場合に、テキストを別の行に折り返すかどうかをこの変数で示します。
|
computeMaxHeight, computeMaxWidth, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, contextMenuProperty, createDefaultSkin, executeAccessibleAction, getBaselineOffset, getContextMenu, getCssMetaData, getSkin, getTooltip, isResizable, layoutChildren, queryAccessibleAttribute, setContextMenu, setSkin, setTooltip, skinProperty, tooltipPropertybackgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, getBackground, getBorder, getHeight, getInsets, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getOpaqueInsets, getPadding, getPrefHeight, getPrefWidth, getShape, getUserAgentStylesheet, getWidth, heightProperty, insetsProperty, isCacheShape, isCenterShape, isScaleShape, isSnapToPixel, layoutInArea, layoutInArea, layoutInArea, layoutInArea, maxHeight, maxHeightProperty, maxWidth, maxWidthProperty, minHeight, minHeightProperty, minWidth, minWidthProperty, opaqueInsetsProperty, paddingProperty, positionInArea, positionInArea, prefHeight, prefHeightProperty, prefWidth, prefWidthProperty, resize, scaleShapeProperty, setBackground, setBorder, setCacheShape, setCenterShape, setHeight, setMaxHeight, setMaxSize, setMaxWidth, setMinHeight, setMinSize, setMinWidth, setOpaqueInsets, setPadding, setPrefHeight, setPrefSize, setPrefWidth, setScaleShape, setShape, setSnapToPixel, setWidth, shapeProperty, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapSize, snapSpace, snapToPixelProperty, widthPropertygetChildren, getChildrenUnmodifiable, getManagedChildren, getStylesheets, isNeedsLayout, layout, lookup, needsLayoutProperty, requestLayout, requestParentLayout, setNeedsLayout, updateBoundsaccessibleHelpProperty, accessibleRoleDescriptionProperty, accessibleRoleProperty, accessibleTextProperty, addEventFilter, addEventHandler, applyCss, autosize, blendModeProperty, boundsInLocalProperty, boundsInParentProperty, buildEventDispatchChain, cacheHintProperty, cacheProperty, clipProperty, computeAreaInScreen, contains, contains, cursorProperty, depthTestProperty, disabledProperty, disableProperty, effectiveNodeOrientationProperty, effectProperty, eventDispatcherProperty, fireEvent, focusedProperty, focusTraversableProperty, getAccessibleHelp, getAccessibleRole, getAccessibleRoleDescription, getAccessibleText, getBlendMode, getBoundsInLocal, getBoundsInParent, getCacheHint, getClip, getCursor, getDepthTest, getEffect, getEffectiveNodeOrientation, getEventDispatcher, getId, getInputMethodRequests, getLayoutBounds, getLayoutX, getLayoutY, getLocalToParentTransform, getLocalToSceneTransform, getNodeOrientation, getOnContextMenuRequested, getOnDragDetected, getOnDragDone, getOnDragDropped, getOnDragEntered, getOnDragExited, getOnDragOver, getOnInputMethodTextChanged, getOnKeyPressed, getOnKeyReleased, getOnKeyTyped, getOnMouseClicked, getOnMouseDragEntered, getOnMouseDragExited, getOnMouseDragged, getOnMouseDragOver, getOnMouseDragReleased, getOnMouseEntered, getOnMouseExited, getOnMouseMoved, getOnMousePressed, getOnMouseReleased, getOnRotate, getOnRotationFinished, getOnRotationStarted, getOnScroll, getOnScrollFinished, getOnScrollStarted, getOnSwipeDown, getOnSwipeLeft, getOnSwipeRight, getOnSwipeUp, getOnTouchMoved, getOnTouchPressed, getOnTouchReleased, getOnTouchStationary, getOnZoom, getOnZoomFinished, getOnZoomStarted, getOpacity, getParent, getProperties, getPseudoClassStates, getRotate, getRotationAxis, getScaleX, getScaleY, getScaleZ, getScene, getStyle, getStyleableParent, getStyleClass, getTransforms, getTranslateX, getTranslateY, getTranslateZ, getTypeSelector, getUserData, hasProperties, hoverProperty, idProperty, inputMethodRequestsProperty, intersects, intersects, isCache, isDisable, isDisabled, isFocused, isFocusTraversable, isHover, isManaged, isMouseTransparent, isPickOnBounds, isPressed, isVisible, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParent, localToParent, localToParent, localToParent, localToParent, localToParentTransformProperty, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToSceneTransformProperty, localToScreen, localToScreen, localToScreen, localToScreen, localToScreen, lookupAll, managedProperty, mouseTransparentProperty, nodeOrientationProperty, notifyAccessibleAttributeChanged, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onInputMethodTextChangedProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDragEnteredProperty, onMouseDragExitedProperty, onMouseDraggedProperty, onMouseDragOverProperty, onMouseDragReleasedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onRotateProperty, onRotationFinishedProperty, onRotationStartedProperty, onScrollFinishedProperty, onScrollProperty, onScrollStartedProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, onZoomFinishedProperty, onZoomProperty, onZoomStartedProperty, opacityProperty, parentProperty, parentToLocal, parentToLocal, parentToLocal, parentToLocal, parentToLocal, pickOnBoundsProperty, pressedProperty, pseudoClassStateChanged, relocate, removeEventFilter, removeEventHandler, requestFocus, resizeRelocate, rotateProperty, rotationAxisProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, screenToLocal, screenToLocal, screenToLocal, setAccessibleHelp, setAccessibleRole, setAccessibleRoleDescription, setAccessibleText, setBlendMode, setCache, setCacheHint, setClip, setCursor, setDepthTest, setDisable, setDisabled, setEffect, setEventDispatcher, setEventHandler, setFocused, setFocusTraversable, setHover, setId, setInputMethodRequests, setLayoutX, setLayoutY, setManaged, setMouseTransparent, setNodeOrientation, setOnContextMenuRequested, setOnDragDetected, setOnDragDone, setOnDragDropped, setOnDragEntered, setOnDragExited, setOnDragOver, setOnInputMethodTextChanged, setOnKeyPressed, setOnKeyReleased, setOnKeyTyped, setOnMouseClicked, setOnMouseDragEntered, setOnMouseDragExited, setOnMouseDragged, setOnMouseDragOver, setOnMouseDragReleased, setOnMouseEntered, setOnMouseExited, setOnMouseMoved, setOnMousePressed, setOnMouseReleased, setOnRotate, setOnRotationFinished, setOnRotationStarted, setOnScroll, setOnScrollFinished, setOnScrollStarted, setOnSwipeDown, setOnSwipeLeft, setOnSwipeRight, setOnSwipeUp, setOnTouchMoved, setOnTouchPressed, setOnTouchReleased, setOnTouchStationary, setOnZoom, setOnZoomFinished, setOnZoomStarted, setOpacity, setPickOnBounds, setPressed, setRotate, setRotationAxis, setScaleX, setScaleY, setScaleZ, setStyle, setTranslateX, setTranslateY, setTranslateZ, setUserData, setVisible, snapshot, snapshot, startDragAndDrop, startFullDrag, styleProperty, toBack, toFront, translateXProperty, translateYProperty, translateZProperty, usesMirroring, visiblePropertypublic final StringProperty textProperty
getText()、setText(String)public final ObjectProperty<Pos> alignmentProperty
public final ObjectProperty<TextAlignment> textAlignmentProperty
contentDisplayProperty()とは異なり、この設定は複数行のテキストのみに、テキスト境界に対して相対的に作用します。public final ObjectProperty<OverrunStyle> textOverrunProperty
Labeledのテキストが、テキストのレンダリングに使用できるスペースを超過した場合に使用する動作を指定します。public final StringProperty ellipsisStringProperty
| 例 | |
|---|---|
| "..." | - ほとんどのロケールのデフォルト値 |
| " . . . " | |
| " [...] " | |
| "\u2026" | - Unicode省略記号文字「…」 |
| "" | - 省略記号なし、切り捨てられた文字列を表示するのみ |
フォントによっては、必ずしもすべてのUnicode文字がサポートされないことに注意してください。
getEllipsisString()、setEllipsisString(String)public final BooleanProperty wrapTextProperty
public final ObjectProperty<Font> fontProperty
getFont()、setFont(Font)public final ObjectProperty<Node> graphicProperty
setContentDisplay(javafx.scene.control.ContentDisplay)を使用して、テキストに対して相対的に配置できます。 この変数用に指定されているノードは、シーングラフのどこにも使用できません。使用した場合、IllegalArgumentExceptionがスローされます。 詳細は、Nodeのクラスの説明を参照してください。 getGraphic()、setGraphic(Node)public final BooleanProperty underlineProperty
public final DoubleProperty lineSpacingProperty
getLineSpacing()、setLineSpacing(double)public final ObjectProperty<ContentDisplay> contentDisplayProperty
public final ReadOnlyObjectProperty<Insets> labelPaddingProperty
getLabelPadding()public final DoubleProperty graphicTextGapProperty
public final ObjectProperty<Paint> textFillProperty
Paint。public final BooleanProperty mnemonicParsingProperty
Labeledのデフォルト値はfalseですが、一部のコントロールではデフォルトで有効になっています。
public Labeled()
public Labeled(String text)
text - ラベルのテキスト。public final StringProperty textProperty()
getText()、setText(String)public final void setText(String value)
public final String getText()
public final ObjectProperty<Pos> alignmentProperty()
public final void setAlignment(Pos value)
public final Pos getAlignment()
public final ObjectProperty<TextAlignment> textAlignmentProperty()
contentDisplayProperty()とは異なり、この設定は複数行のテキストのみに、テキスト境界に対して相対的に作用します。public final void setTextAlignment(TextAlignment value)
contentDisplayProperty()とは異なり、この設定は複数行のテキストのみに、テキスト境界に対して相対的に作用します。public final TextAlignment getTextAlignment()
contentDisplayProperty()とは異なり、この設定は複数行のテキストのみに、テキスト境界に対して相対的に作用します。public final ObjectProperty<OverrunStyle> textOverrunProperty()
Labeledのテキストが、テキストのレンダリングに使用できるスペースを超過した場合に使用する動作を指定します。public final void setTextOverrun(OverrunStyle value)
Labeledのテキストが、テキストのレンダリングに使用できるスペースを超過した場合に使用する動作を指定します。public final OverrunStyle getTextOverrun()
Labeledのテキストが、テキストのレンダリングに使用できるスペースを超過した場合に使用する動作を指定します。public final StringProperty ellipsisStringProperty()
| 例 | |
|---|---|
| "..." | - ほとんどのロケールのデフォルト値 |
| " . . . " | |
| " [...] " | |
| "\u2026" | - Unicode省略記号文字「…」 |
| "" | - 省略記号なし、切り捨てられた文字列を表示するのみ |
フォントによっては、必ずしもすべてのUnicode文字がサポートされないことに注意してください。
getEllipsisString()、setEllipsisString(String)public final void setEllipsisString(String value)
| 例 | |
|---|---|
| "..." | - ほとんどのロケールのデフォルト値 |
| " . . . " | |
| " [...] " | |
| "\u2026" | - Unicode省略記号文字「…」 |
| "" | - 省略記号なし、切り捨てられた文字列を表示するのみ |
フォントによっては、必ずしもすべてのUnicode文字がサポートされないことに注意してください。
public final String getEllipsisString()
| 例 | |
|---|---|
| "..." | - ほとんどのロケールのデフォルト値 |
| " . . . " | |
| " [...] " | |
| "\u2026" | - Unicode省略記号文字「…」 |
| "" | - 省略記号なし、切り捨てられた文字列を表示するのみ |
フォントによっては、必ずしもすべてのUnicode文字がサポートされないことに注意してください。
public final BooleanProperty wrapTextProperty()
public final void setWrapText(boolean value)
public final boolean isWrapText()
public Orientation getContentBias()
getContentBias、クラスNodeNode.isResizable()、Node.minWidth(double)、Node.minHeight(double)、Node.prefWidth(double)、Node.prefHeight(double)、Node.maxWidth(double)、Node.maxHeight(double)public final ObjectProperty<Font> fontProperty()
getFont()、setFont(Font)public final void setFont(Font value)
public final Font getFont()
public final ObjectProperty<Node> graphicProperty()
setContentDisplay(javafx.scene.control.ContentDisplay)を使用して、テキストに対して相対的に配置できます。 この変数用に指定されているノードは、シーングラフのどこにも使用できません。使用した場合、IllegalArgumentExceptionがスローされます。 詳細は、Nodeのクラスの説明を参照してください。 getGraphic()、setGraphic(Node)public final void setGraphic(Node value)
setContentDisplay(javafx.scene.control.ContentDisplay)を使用して、テキストに対して相対的に配置できます。 この変数用に指定されているノードは、シーングラフのどこにも使用できません。使用した場合、IllegalArgumentExceptionがスローされます。 詳細は、Nodeのクラスの説明を参照してください。 public final Node getGraphic()
setContentDisplay(javafx.scene.control.ContentDisplay)を使用して、テキストに対して相対的に配置できます。 この変数用に指定されているノードは、シーングラフのどこにも使用できません。使用した場合、IllegalArgumentExceptionがスローされます。 詳細は、Nodeのクラスの説明を参照してください。 public final BooleanProperty underlineProperty()
public final void setUnderline(boolean value)
public final boolean isUnderline()
public final DoubleProperty lineSpacingProperty()
getLineSpacing()、setLineSpacing(double)public final void setLineSpacing(double value)
public final double getLineSpacing()
public final ObjectProperty<ContentDisplay> contentDisplayProperty()
public final void setContentDisplay(ContentDisplay value)
public final ContentDisplay getContentDisplay()
public final ReadOnlyObjectProperty<Insets> labelPaddingProperty()
getLabelPadding()public final Insets getLabelPadding()
public final DoubleProperty graphicTextGapProperty()
public final void setGraphicTextGap(double value)
public final double getGraphicTextGap()
public final void setTextFill(Paint value)
Paint。public final Paint getTextFill()
Paint。public final ObjectProperty<Paint> textFillProperty()
Paint。public final void setMnemonicParsing(boolean value)
Labeledのデフォルト値はfalseですが、一部のコントロールではデフォルトで有効になっています。
public final boolean isMnemonicParsing()
Labeledのデフォルト値はfalseですが、一部のコントロールではデフォルトで有効になっています。
public final BooleanProperty mnemonicParsingProperty()
Labeledのデフォルト値はfalseですが、一部のコントロールではデフォルトで有効になっています。
public static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData()
public List<CssMetaData<? extends Styleable,?>> getControlCssMetaData()
getControlCssMetaData、クラスControlCopyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.