UserPermissionCollection.Item Property (Int32)
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
Get
'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
Type: System.Int32The zero-based index of the UserPermission object to retrieve.
Property Value
Type: Microsoft.Office.InfoPath.UserPermission
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 InfoPath Filler.
Examples
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