Class ProgressBarTableCell<S>

Type Parameters:
S - The type of the elements contained within the TableView.
All Implemented Interfaces:
Styleable, EventTarget, Skinnable

public class ProgressBarTableCell<S>
extends TableCell<S,​Double>
A class containing a TableCell implementation that draws a ProgressBar node inside the cell.
Since:
JavaFX 2.2
  • Constructor Details

    • ProgressBarTableCell

      public ProgressBarTableCell()
      Creates a default ProgressBarTableCell instance
  • Method Details

    • forTableColumn

      public static <S> Callback<TableColumn<S,​Double>,​TableCell<S,​Double>> forTableColumn()
      Provides a ProgressBar that allows easy visualisation of a Number value as it proceeds from 0.0 to 1.0. If the value is -1, the progress bar will appear indeterminate.
      Type Parameters:
      S - The type of the TableView generic type
      Returns:
      A Callback that can be inserted into the cell factory property of a TableColumn, that enables visualisation of a Number as it progresses from 0.0 to 1.0.