View.SwitchView 方法
将 Microsoft InfoPath 表单的活动视图更改为指定的视图。
命名空间: Microsoft.Office.Interop.InfoPath.SemiTrust
程序集: Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)
语法
声明
Sub SwitchView ( _
bstrName As String _
)
用法
Dim instance As View
Dim bstrName As String
instance.SwitchView(bstrName)
void SwitchView(
string bstrName
)
参数
bstrName
类型:System.String要切换到的视图的名称。如果使用空字符串,则显示默认视图。
备注
如果将空字符串作为 bstrName 参数,则视图将更改为表单的默认视图。
重要
此成员只能由与当前打开的表单在相同域中运行的表单访问,或者由已授予跨域权限的表单访问。
示例
在以下示例中,ViewObject 对象的 SwitchView 方法用来将当前视图更改为默认视图:
thisXDocument.View.SwitchView("");