편집

다음을 통해 공유


Permission.PermissionFromPolicy Property

Definition

Gets whether a permission policy has been applied to the current form.

public:
 property bool PermissionFromPolicy { bool get(); };
public bool PermissionFromPolicy { get; }
member this.PermissionFromPolicy : bool
Public ReadOnly Property PermissionFromPolicy As Boolean

Property Value

true if the permission policy was applied; otherwise, false.

Examples

In the following example, the PermissionFromPolicy property is used to display whether a permission policy has been applied to the current form.

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

Remarks

InfoPath supports the use of administrative permission policies which list users and groups and their form permissions. The PermissionFromPolicy property indicates whether a permission policy was applied the last time permissions were enabled on the form.

The PermissionFromPolicy property always returns false when checked by a non-owner of the form, even when the user has object model permissions.

Applies to