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
Sub ApplyPolicy ( _
bstrFileName As String _
)
'Usage
Dim instance As Permission
Dim bstrFileName As String
instance.ApplyPolicy(bstrFileName)
void ApplyPolicy(
string bstrFileName
)
Parameters
bstrFileName
Type: System.StringThe 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.
Examples
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")