UserPermissionCollection.Item Property (Int32) (Microsoft.Office.InfoPath)

Gets the UserPermission object at the specified index in the collection.

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

Syntax

'Declaration
Public MustOverride ReadOnly Default Property Item ( _
    index As Integer _
) As UserPermission
'Usage
Dim instance As UserPermissionCollection
Dim index As Integer
Dim value As UserPermission

value = instance(index)
public abstract UserPermission this [
    int index
] { get; }

Parameters

  • index
    The zero-based index of the UserPermission object to retrieve.

Property Value

A UserPermission object that represents the specified user.

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 Office InfoPath 2007.

Example

In the following example, clicking the Button control gets the UserPermissionsCollection for the current form and sets the second user in the collection to the Change access level.

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

See Also

Reference

UserPermissionCollection Class
UserPermissionCollection Members
Microsoft.Office.InfoPath Namespace