Module org.controlsfx.controls
Class SpreadsheetView.RowHeightEvent
- java.lang.Object
-
- java.util.EventObject
-
- javafx.event.Event
-
- org.controlsfx.control.spreadsheet.SpreadsheetView.RowHeightEvent
-
- All Implemented Interfaces:
Serializable
,Cloneable
- Enclosing class:
- SpreadsheetView
public static class SpreadsheetView.RowHeightEvent extends Event
This event is thrown on the SpreadsheetView when the user resize a row with its mouse.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static EventType<SpreadsheetView.RowHeightEvent>
ROW_HEIGHT_CHANGE
This is the event used bySpreadsheetView.RowHeightEvent
.-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description RowHeightEvent(int row, double height)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getHeight()
Return the new height for this row.int
getRow()
Return the row index that has been resized.-
Methods inherited from class javafx.event.Event
clone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumed
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
ROW_HEIGHT_CHANGE
public static final EventType<SpreadsheetView.RowHeightEvent> ROW_HEIGHT_CHANGE
This is the event used bySpreadsheetView.RowHeightEvent
.
-
-