CellProviderInitEventHandler delegate
NOTE: This API is now obsolete.
Representa o método que manipulará o evento CellProviderInit acionado por uma Web Part que implementa a interface ICellProvider .
Namespace: Microsoft.SharePoint.WebPartPages.Communication
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaração
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartField instead")> _
Public Delegate Sub CellProviderInitEventHandler ( _
sender As Object, _
e As CellProviderInitEventArgs _
)
'Uso
Dim instance As New CellProviderInitEventHandler(AddressOf HandlerMethod)
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartField instead")]
public delegate void CellProviderInitEventHandler(
Object sender,
CellProviderInitEventArgs e
)
Parâmetros
sender
Type: System.ObjectA origem do evento, o objeto WebPart .
e
Type: Microsoft.SharePoint.WebPartPages.Communication.CellProviderInitEventArgsUm CellProviderInitEventArgs que contém os dados do evento.
Comentários
Quando você criar um representante de CellProviderInitEventHandler , 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.
Examples
O exemplo de código a seguir mostra a declaração de um evento do tipo CellProviderInitEventHandler de uma classe Microsoft.SharePoint.WebPartPages.WebPart que implementa a interface ICellProvider . Um exemplo de código que mostra a implementação do manipulador de eventos é o tópico de evento CellProviderInit . Um exemplo de código que mostra a implementação completa da interface ICellProvider é o tópico ICellProvider .
' Step #3: Declare the ICellProvider events.
' Because this class implements the ICellProvider interface, it must
' implement the interface member events CellProviderInit and CellReady.
Public Event CellProviderInit As CellProviderInitEventHandler Implements ICellProvider.CellProviderInit
Public Event CellReady As CellReadyEventHandler Implements ICellProvider.CellReady
// Step #3: Declare the ICellProvider events.
// Because this class implements the ICellProvider interface, it must
// implement the interface member events CellProviderInit and
// CellReady.
public event CellProviderInitEventHandler CellProviderInit;
public event CellReadyEventHandler CellReady;