Interface ICellLinkControlT<T>
- All Superinterfaces:
ICellLinkControl,IControl
- All Known Subinterfaces:
ICheckBox,IDropDown,IListBox,IOptionButton,IRangeBase,IScrollBar,ISelector,ISelectorT<T,,TCollection> ISpinner
Common members of controls that have CellLink property.
-
Method Summary
Methods inherited from interface com.grapecity.documents.excel.forms.ICellLinkControl
getDisplay3DShading, getLinkedCell, setDisplay3DShading, setLinkedCellMethods 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
-
getValue
T getValue()The value that is used to bindICellLinkControl.LinkedCell.The actual meaning of this property depends on the
IControl.FormControlTypeof the current control.-
FormControlType.CheckBox:False- Unchecked,true- Checked,null- Mixed. -
FormControlType.OptionButton:False- Unselected,true- Selected. This value is not nullable inIOptionButton. -
FormControlType.Spinner,FormControlType.ScrollBar: The current value. -
FormControlType.ListBox,FormControlType.DropDown:ISelector.SelectedIndex+ 1.
-
-
setValue
The value that is used to bindICellLinkControl.LinkedCell.The actual meaning of this property depends on the
IControl.FormControlTypeof the current control.-
FormControlType.CheckBox:False- Unchecked,true- Checked,null- Mixed. -
FormControlType.OptionButton:False- Unselected,true- Selected. This value is not nullable inIOptionButton. -
FormControlType.Spinner,FormControlType.ScrollBar: The current value. -
FormControlType.ListBox,FormControlType.DropDown:ISelector.SelectedIndex+ 1.
- Parameters:
value- the new value.
-
-