Permission.PermissionFromPolicy Property
Gets whether a permission policy has been applied to the current form.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
ReadOnly Property PermissionFromPolicy As Boolean
Get
'Usage
Dim instance As Permission
Dim value As Boolean
value = instance.PermissionFromPolicy
bool PermissionFromPolicy { get; }
Property Value
Type: System.Boolean
true if the permission policy was applied; otherwise, false.
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 2010, 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 Microsoft.Office.Interop.InfoPath.SemiTrust 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.
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())