Compartilhar via


UserPermissionCollection.RemoveAll Método

Definição

Remove todos os UserPermission objetos da coleção.

public:
 abstract void RemoveAll();
public abstract void RemoveAll ();
abstract member RemoveAll : unit -> unit
Public MustOverride Sub RemoveAll ()

Exemplos

No exemplo a seguir, clicar no controle Botão obtém o UserPermissionsCollection para o formulário atual e remove todos os usuários.

public void CTRL1_Clicked(object sender, ClickedEventArgs e)
{
   this.Permission.UserPermissions.RemoveAll();
}
Public Sub CTRL1_Clicked(ByVal sender As Object, _
   ByVal e As ClickedEventArgs)
   Me.Permission.UserPermissions.RemoveAll()
End Sub

Comentários

This member can be accessed only by forms opened from a form template that has been configured to run with full trust using the Security and Trust category of the Form Options dialog box. This member requires full trust for the immediate caller and cannot be used by partially trusted code. For more information, see "Using Libraries from Partially Trusted Code" on MSDN.

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

Aplica-se a