[]
        
(Showing Draft Content)

IRangeBase

Interface IRangeBase

All Superinterfaces:
ICellLinkControl, ICellLinkControlT<Integer>, IControl
All Known Subinterfaces:
IScrollBar, ISpinner

public interface IRangeBase extends ICellLinkControlT<Integer>
Represents an element that has a value within a specific range.
  • Method Details

    • getMax

      int getMax()
      Gets the highest possible value of the range element.
      Returns:
      [0, 30000]
    • setMax

      void setMax(int value)
      Sets the highest possible value of the range element.
      Parameters:
      value - [0,30000]
    • getMin

      int getMin()
      Gets the minimum possible value of the range element.
      Returns:
      [0, 30000]
    • setMin

      void setMin(int value)
      Sets the minimum possible value of the range element.
      Parameters:
      value - [0,30000]
    • getSmallChange

      int getSmallChange()
      Gets a value to be added to or subtracted from the value of a RangeBase control.
      Returns:
      [0, 30000]
    • setSmallChange

      void setSmallChange(int value)
      Sets a value to be added to or subtracted from the value of a RangeBase control.
      Parameters:
      value - [0,30000]