接口 IOptionButton
- 所有超级接口:
ICellLinkControl
,ICellLinkControlT<Boolean>
,IContentControl
,IControl
,IControlT<IOptionButton>
public interface IOptionButton
extends IControlT<IOptionButton>, IContentControl, ICellLinkControlT<Boolean>
选项按钮控件。
-
方法概要
修饰符和类型方法说明获取包含选项按钮的第一个分组框。boolean
获取IOptionButton
是否被选中。void
setIsChecked
(boolean value) 设置IOptionButton
是否被选中。从接口继承的方法 com.grapecity.documents.excel.forms.ICellLinkControl
getDisplay3DShading, getLinkedCell, setDisplay3DShading, setLinkedCell
从接口继承的方法 com.grapecity.documents.excel.forms.ICellLinkControlT
getValue, setValue
从接口继承的方法 com.grapecity.documents.excel.forms.IContentControl
getLockedText, getText, setLockedText, setText
从接口继承的方法 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
-
方法详细资料
-
getGroupBox
IGroupBox getGroupBox()获取包含选项按钮的第一个分组框。同一分组框中的选项按钮属于同一组。
如果该值为
null
,则选项按钮处于默认组中。同一组的选项按钮将共享
ICellLinkControl.LinkedCell
属性的值。它们还会影响同一组中其他选项按钮的选择状态。
- API Note:
- 维护此属性的状态较为沉重。我们不推荐在同一个工作表中放置太多的分组框和选项按钮。
- 返回:
- 包含选项按钮的第一个分组框。如果选项按钮位于默认组中,则该值为
null
。
-
getIsChecked
boolean getIsChecked()获取IOptionButton
是否被选中。- 返回:
False
- 未选中,true
- 已选中。
-
setIsChecked
void setIsChecked(boolean value) 设置IOptionButton
是否被选中。- 参数:
value
-False
- 未选中,true
- 选中。
-