Edit

Share via


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.

Because the Permission object and its members are new to Microsoft InfoPath, you must cast the object returned by the thisXDocument variable to the _XDocument3 type to access this object and its members. For more information, see How to: Use Object Model Members That Are Not Compatible with InfoPath 2003.

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Applies to