UserPermissionCollection.Item property (String)

Get the UserPermission object with the specified UserId from the collection.

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

Syntax

'Declaration
Public MustOverride ReadOnly Default Property Item ( _
    userId As String _
) As UserPermission
    Get
'Usage
Dim instance As UserPermissionCollection
Dim userId As String
Dim value As UserPermission

value = instance(userId)
public abstract UserPermission this[
    string userId
] { get; }

Parameters

  • userId
    Type: System.String

    The e-mail address of the specified user.

Property value

Type: Microsoft.Office.InfoPath.UserPermission
A UserPermission that represents the specified user. Returns a null reference (Nothing in Visual Basic) if the specified userId does not exist.

Remarks

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.

This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.

Examples

In the following example, clicking the Button control gets the UserPermissionsCollection for the current form and sets the user with the e-mail address someone@example.com to the Change access level.

public void CTRL1_Clicked(object sender, ClickedEventArgs e)
{
   Permission.UserPermissions["someone@example.com"].Permission = 
      PermissionType.Change;
}
Public Sub CTRL1_Clicked(ByVal sender As Object, _
   ByVal e As ClickedEventArgs)
   Permission.UserPermissions("someone@example.com").Permission = _
      PermissionType.Change
End Sub

See also

Reference

UserPermissionCollection class

UserPermissionCollection members

Item overload

Microsoft.Office.InfoPath namespace