_Application3.Name 属性
获取 InfoPath 应用程序的名称。
命名空间: 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 _Application3
Dim value As String
value = instance.Name
string Name { get; }
属性值
实现
_Application2.Name
_Application.Name
备注
应用程序的名称不包含版本号。若要获取应用程序的版本号,请使用 Version 属性。
重要
可以无限制访问此成员。
示例
在以下示例中,通过 XDocument 对象来访问的 UIObject 对象的 Alert 方法用于显示一个消息框来指示应用程序的名称:
thisXDocument.UI.Alert("Application name: " + thisApplication.Name);
thisXDocument.UI.Alert("Application name: " & thisApplication.Name)