UserPermission.Remove Method

Removes the current UserPermission object from the form's permissions.

Namespace:  Microsoft.Office.Interop.InfoPath
Assembly:  Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)

Syntax

'Declaration
Sub Remove
'Usage
Dim instance As UserPermission

instance.Remove()
void Remove()

Examples

In the following example, a UserPermission object retrieved from the Permission collection for the current form, and then the Remove method is used to remove the user.

_XDocument3 thisDoc = (_XDocument3)thisXDocument;
UserPermission thisUser = 
   thisDoc.Permission["someone@example.com"];
thisUser.Remove();
Dim thisDoc As _XDocument3 = DirectCast(thisXDocument, _XDocument3)
UserPermission thisUser = 
   Permission.UserPermissions("someone@example.com")
thisUser.Remove()

See Also

Reference

UserPermission Interface

UserPermission Members

Microsoft.Office.Interop.InfoPath Namespace