RibbonCheckBox 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示功能区上的一个复选框控件。
public interface class RibbonCheckBox : IDisposable, Microsoft::Office::Tools::Ribbon::RibbonControl, System::ComponentModel::IComponent
[System.Runtime.InteropServices.Guid("2119eecb-0ee2-4a64-8b87-b76bd1fa395e")]
public interface RibbonCheckBox : IDisposable, Microsoft.Office.Tools.Ribbon.RibbonControl, System.ComponentModel.IComponent
[<System.Runtime.InteropServices.Guid("2119eecb-0ee2-4a64-8b87-b76bd1fa395e")>]
type RibbonCheckBox = interface
interface RibbonControl
interface RibbonComponent
interface IComponent
interface IDisposable
Public Interface RibbonCheckBox
Implements IComponent, IDisposable, RibbonControl
- 属性
- 实现
注解
可以在运行时创建此控件的实例,并将其添加到动态菜单。 如果将菜单的属性设置为 Dynamictrue
,则菜单是动态的。
只能在功能区加载到 Office 应用程序之前或在运行时将控件添加到动态菜单之前设置此控件的某些属性。 有关设置这些属性的信息,请参阅 功能区对象模型概述。
可以使用 对象的 方法RibbonFactory在运行时CreateRibbonCheckBox创建 RibbonCheckBox 。
可通过两种方法来访问 RibbonFactory 对象:
通过使用 Ribbon 类的
Factory
属性。 可从 Ribbon 类中的代码使用此方法。通过使用
Globals.Factory.GetRibbonFactory
方法。 可从 Ribbon 类外的代码使用此方法。
注意
此接口由 Visual Studio Tools for Office Runtime 实现。 不应在代码中实现此接口。 有关更多信息,请参见 Visual Studio Tools for Office Runtime Overview。
使用情况
本文档介绍面向 .NET Framework 4 或更高版本的 Office 项目中所用的此类型的版本。 在面向 .NET Framework 3.5 的项目中,此类型可能具有不同的成员,因此本文档为此类型提供的代码示例可能并不适用。 有关在面向 .NET Framework 3.5 的项目中使用此类型的文档,请参阅 Visual Studio 2008 文档中的以下参考部分:http://go.microsoft.com/fwlink/?LinkId=160658。
属性
Checked |
获取或设置一个值,该值指示是否选中此 RibbonCheckBox。 |
Description |
获取或设置此 RibbonCheckBox 的说明,它将在其父级控件的 |
Enabled |
获取或设置一个值,该值指示是否启用此 RibbonControl。 (继承自 RibbonControl) |
Id |
获取一个字符串,Microsoft Office 将用其标识此 RibbonControl 对象。 (继承自 RibbonControl) |
KeyTip |
获取或设置此 RibbonCheckBox 的键盘快捷键。 |
Label |
获取或设置此 RibbonCheckBox 上显示的文本。 |
Name |
获取或设置此 RibbonComponent 的名称。 (继承自 RibbonComponent) |
Parent |
获取一个 RibbonComponent,表示此 RibbonComponent 的父级。 (继承自 RibbonComponent) |
Position |
如果复选框位于 Microsoft Office 菜单上,请获取或设置复选框的位置。 |
Ribbon |
获取包含控件层次结构的顶级 Ribbon 对象。 (继承自 RibbonComponent) |
RibbonUI |
获取 Microsoft Office 应用程序提供给功能区扩展性代码的 IRibbonUI 实例。 (继承自 RibbonComponent) |
ScreenTip |
获取或设置用户将指针移到 RibbonCheckBox 上方时显示的提示文本。 |
SuperTip |
获取或设置用户将指针移到 RibbonCheckBox 上时显示的多行提示文本。 |
Tag |
获取或设置与此 RibbonComponent 关联的应用程序特定的数据。 (继承自 RibbonComponent) |
Visible |
获取或设置一个值,该值指示此 RibbonControl 是否可见。 (继承自 RibbonControl) |
方法
PerformDynamicLayout() |
如果 RibbonComponent 具有一个动态父级(如动态菜单)且布局未挂起,则调用父控件的 Microsoft.Office.Core.IRibbonUI.InvalidateControl 方法。 (继承自 RibbonComponent) |
PerformLayout() |
如果 具有一个父级,且布局未挂起,则调用 RibbonComponentMicrosoft.Office.Core.IRibbonUI.InvalidateControl。 (继承自 RibbonComponent) |
ResumeLayout() |
取消 SuspendLayout() 方法的效果。 (继承自 RibbonComponent) |
ResumeLayout(Boolean) |
取消 SuspendLayout() 方法的效果。 (继承自 RibbonComponent) |
SuspendLayout() |
阻止 Microsoft Office 应用程序刷新功能区上的控件状态。 (继承自 RibbonComponent) |
事件
Click |
用户单击复选框时发生。 |