_XDocument3.Permission 属性

定义

获取对 PermissionObject 与窗体关联的 对象的引用。

public:
 property Microsoft::Office::Interop::InfoPath::PermissionObject ^ Permission { Microsoft::Office::Interop::InfoPath::PermissionObject ^ get(); };
public Microsoft.Office.Interop.InfoPath.PermissionObject Permission { get; }
member this.Permission : Microsoft.Office.Interop.InfoPath.PermissionObject
Public ReadOnly Property Permission As PermissionObject

属性值

一个 PermissionObject 对象,表示信息权限管理 (IRM) 窗体的权限设置。

示例

在以下示例中, Permission 属性返回当前窗体的 PermissionObject 对象,该对象随后使用 Enabled 属性显示是否为当前窗体启用了权限设置。

_XDocument3 thisDoc = (_XDocument3)thisXDocument;
thisXDocument.UI.Alert(
   thisDoc.Permission.Enabled.ToString());
Dim thisDoc As _XDocument3 = _
   DirectCast(thisXDocument, _XDocument3)
thisXDocument.UI.Alert(
   thisDoc.Permission.Enabled.ToString())

在以下示例中, Permission 属性返回当前窗体的 PermissionObject 对象,该对象随后使用 Enabled 属性显示是否为当前窗体启用了权限设置。

_XDocument3 thisDoc = (_XDocument3)thisXDocument;
thisXDocument.UI.Alert(
   thisDoc.Permission.Enabled.ToString());
Dim thisDoc As _XDocument3 = _
   DirectCast(thisXDocument, _XDocument3)
thisXDocument.UI.Alert(
   thisDoc.Permission.Enabled.ToString())

注解

在返回对 PermissionObject 对象的引用后,可以使用该引用限制对活动表单的权限以及返回或设置特定的权限设置,例如是否可以编辑、复制或打印表单中的数据。

适用于