ListReadyEventHandler delegate
NOTE: This API is now obsolete.
Representa o método que manipulará o evento ListReady acionado por uma classe Microsoft.SharePoint.WebPartPages.WebPart que implementa a interface IListProvider .
Namespace: Microsoft.SharePoint.WebPartPages.Communication
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaração
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartTable instead")> _
Public Delegate Sub ListReadyEventHandler ( _
sender As Object, _
e As ListReadyEventArgs _
)
'Uso
Dim instance As New ListReadyEventHandler(AddressOf HandlerMethod)
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartTable instead")]
public delegate void ListReadyEventHandler(
Object sender,
ListReadyEventArgs e
)
Parâmetros
sender
Type: System.ObjectA origem do evento, o WebPart.
e
Type: Microsoft.SharePoint.WebPartPages.Communication.ListReadyEventArgsUmaListReadyEventArgsque contém os dados do evento.
Comentários
Quando você criar um representante de ListReadyEventHandler , você identificar o método que manipulará o evento. Para associar o evento com o manipulador de eventos, adicione uma instância do representante para o evento. O manipulador de eventos é chamado sempre que o evento ocorre, a menos que você remova o representante.