javafx.scene.control
Class ResizeFeaturesBase<S>
- javafx.scene.control.ResizeFeaturesBase<S>
Direct Known Subclasses:
public class ResizeFeaturesBase<S> extends Object
An immutable wrapper class for use by the column resize policies offered by controls such as
TableView and TreeTableView.Since:
JavaFX 8.0
-
Constructor Summary
Constructors Constructor and Description ResizeFeaturesBase(TableColumnBase<S,?> column, Double delta)Creates an instance of this class, with the provided TableColumnBase and delta values being set and stored in this immutable instance.
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description TableColumnBase<S,?>getColumn()Returns the column upon which the resize is occurring, or null if this ResizeFeatures instance was created as a result of a resize operation.DoublegetDelta()Returns the amount of horizontal space added or removed in the resize operation.
-
Constructor Detail
-
ResizeFeaturesBase
public ResizeFeaturesBase(TableColumnBase<S,?> column, Double delta)Creates an instance of this class, with the provided TableColumnBase and delta values being set and stored in this immutable instance.Parameters:
column- The column upon which the resize is occurring, or null if this ResizeFeatures instance is being created as a result of a resize operation.
-
-
Method Detail
-
getColumn
public TableColumnBase<S,?> getColumn()
Returns the column upon which the resize is occurring, or null if this ResizeFeatures instance was created as a result of a resize operation.
-
getDelta
public Double getDelta()
Returns the amount of horizontal space added or removed in the resize operation.
-
© 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.