Interface IRangeBase
- All Superinterfaces:
ICellLinkControl,ICellLinkControlT<Integer>,IControl
- All Known Subinterfaces:
IScrollBar,ISpinner
Represents an element that has a value within a specific range.
-
Method Summary
Modifier and TypeMethodDescriptionintgetMax()Gets the highest possible value of the range element.intgetMin()Gets the minimum possible value of the range element.intGets a value to be added to or subtracted from the value of a RangeBase control.voidsetMax(int value) Sets the highest possible value of the range element.voidsetMin(int value) Sets the minimum possible value of the range element.voidsetSmallChange(int value) Sets a value to be added to or subtracted from the value of a RangeBase control.Methods inherited from interface com.grapecity.documents.excel.forms.ICellLinkControl
getDisplay3DShading, getLinkedCell, setDisplay3DShading, setLinkedCellMethods inherited from interface com.grapecity.documents.excel.forms.ICellLinkControlT
getValue, setValueMethods inherited from interface com.grapecity.documents.excel.forms.IControl
bringToFront, delete, getBottomRightCell, getEnabled, getFormControlType, getHeight, getLeft, getLocked, getName, getParent, getPlacement, getPrintObject, getShapeRange, getTop, getTopLeftCell, getVisible, getWidth, getZOrder, sendToBack, setEnabled, setHeight, setLeft, setLocked, setName, setPlacement, setPrintObject, setTop, setVisible, setWidth
-
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]
-