Share via


Permission.ApplyPolicy Method

Applies a policy to the form using a policy template file.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)

Syntax

'Declaration
'Usage

Parameters

  • bstrFileName
    The path and file name of an Extensible Rights Markup Language (XRML) file that defines users and groups and permissions to apply to the form template.

Remarks

To view an example of the format of an XRML file that is used as a policy template file, see Sample End-User License in the Rights Management Services SDK.

Example

In the following example, the ApplyPolicy method is used to apply a policy template file that allows the user to edit, but not copy the current form.

_XDocument3 thisDoc = (_XDocument3)thisXDocument;
thisDoc.Permission.ApplyPolicy(
   "\\\\MyShare\\Templates\\Edit_but_not_copy.xml");
Dim thisDoc As _XDocument3 = DirectCast(thisXDocument, _XDocument3)
thisDoc.Permission.ApplyPolicy( _
   "\\MyShare\Templates\Edit_but_not_copy.xml")

See Also

Reference

Permission Interface
Permission Members
Microsoft.Office.Interop.InfoPath Namespace