javafx.css
Class FontCssMetaData<S extends Styleable>
- javafx.css.CssMetaData<S,Font>
-
- javafx.css.FontCssMetaData<S>
public abstract class FontCssMetaData<S extends Styleable> extends CssMetaData<S,Font>
An partial implementation of CssMetaData for Font properties which includes the font sub-properties: weight, style, family and size.
Since:
JavaFX 8.0
-
Constructor Summary
Constructors Constructor and Description FontCssMetaData(String property, Font initial)The property name is concatenated with "-weight", "-style", "-family" and "-size" to create the sub-properties.
-
Method Summary
-
Methods inherited from class javafx.css.CssMetaData
equals, getConverter, getInitialValue, getProperty, getStyleableProperty, getSubProperties, hashCode, isInherits, isSettable, set, toString
-
-
Constructor Detail
-
FontCssMetaData
public FontCssMetaData(String property, Font initial)The property name is concatenated with "-weight", "-style", "-family" and "-size" to create the sub-properties. For example,new FontCssMetaData<Text>("-fx-font", Font.getDefault());will create a CssMetaData for "-fx-font" with sub-properties: "-fx-font-weight", "-fx-font-style", "-fx-font-family" and "-fx-font-size"Parameters:
property-
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.