/// <summary> /// Invoked when editing is finished. /// </summary> public void editingStopped(ChangeEvent @e) { }
/// <summary> /// Invoked when a column is moved due to a margin change. /// </summary> public void columnMarginChanged(ChangeEvent @e) { }
/// <summary> /// Invoked when editing is canceled. /// </summary> public void editingCanceled(ChangeEvent @e) { }
public virtual void stateChanged(ChangeEvent e) { if (this.getValueIsAdjusting()) return; this.bindable.setBindableValue((double) this.getValue() * (this.max - this.min) / (double) this.pixelWidth + this.min); }