View.Name 属性
获取视图的名称。
命名空间: Microsoft.Office.Interop.InfoPath.SemiTrust
程序集: Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)
语法
声明
ReadOnly Property Name As String
Get
用法
Dim instance As View
Dim value As String
value = instance.Name
string Name { get; }
属性值
备注
若要确定默认视图,请使用 ViewInfoObject 对象的 IsDefault 属性。
重要
此成员只能由与当前打开的表单在相同域中运行的表单访问,或者由已授予跨域权限的表单访问。
示例
在以下示例中,ViewObject 对象的 Name 属性用于确定用户已切换到的视图。如果该视图为"存档客户"视图,则将注释值添加到表单的基础 XML 文档:
if (thisXDocument.View.Name == @"Archive Customer")
{
IXMLDOMNode notes = thisXDocument.DOM.selectSingleNode(@"/Customers/CustomerInfo/Notes");
IXMLDOMNode div = thisXDocument.DOM.createNode(1, "div", @"http://www.w3.org/1999/xhtml");
div.text = "Note recorded " + thisXDocument.Util.Date.Now().ToString();
notes.appendChild(div);
}