CellConsumerInitEventArgs class
NOTE: This API is now obsolete.
Identifica a estrutura de argumento inicial para a criação de tempo de design. Esses argumentos são passados para a Web Part conectada como parte do evento CellConsumerInit para informar que o nome de Web Part conectada e exibir o nome da célula é.
Inheritance hierarchy
System.Object
System.EventArgs
Microsoft.SharePoint.WebPartPages.Communication.InitEventArgs
Microsoft.SharePoint.WebPartPages.Communication.CellConsumerInitEventArgs
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 NotInheritable Class CellConsumerInitEventArgs _
Inherits InitEventArgs
'Uso
Dim instance As CellConsumerInitEventArgs
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartField instead")]
public sealed class CellConsumerInitEventArgs : InitEventArgs
Examples
O exemplo de código a seguir mostra um método substituído PartCommunicationInit que cria um objeto CellConsumerInitEventArgs , define as propriedades FieldName e FieldDisplayName e dispara o evento CellConsumerInit . Este exemplo de código é parte de um exemplo maior fornecido para a interface ICellConsumer .
' Step #10: Override the PartCommunicationInit() method.
' PartCommunicationInit() is called by the Web Part infrastructure
' during the ASP.NET PreRender event to allow the part to pass
' initialization information to the other connected parts.
' It is important to always pass initialization information as some
' parts may not behave properly if this initialization information is
' not received.
Public Overrides Sub PartCommunicationInit()
' Check if connected.
If _connected Then
' Create the CellConsumerInitEventArgs structure for the
' CellConsumerInit event.
Dim cellConsumerInitArgs As New CellConsumerInitEventArgs()
' Set the FieldName and FieldDisplayName values.
cellConsumerInitArgs.FieldName = _cellName
cellConsumerInitArgs.FieldDisplayName = _cellDisplayName
' Fire the CellConsumerInit event.
RaiseEvent CellConsumerInit(Me, cellConsumerInitArgs)
End If
End Sub
// Step #10: Override the PartCommunicationInit() method.
// PartCommunicationInit() is called by the Web Part infrastructure
// during the ASP.NET PreRender event to allow the part to pass
// initialization information to the other connected parts.
// It is important to always pass initialization information as some
// parts may not behave properly if this initialization information is
// not received.
public override void PartCommunicationInit()
{
// Check if connected.
if(_connected)
{
// If there is a listener, fire the CellConsumerInit event.
if (CellConsumerInit != null)
{
// Create the CellConsumerInitEventArgs structure for the
// CellConsumerInit event.
CellConsumerInitEventArgs cellConsumerInitArgs =
new CellConsumerInitEventArgs();
// Set the FieldName and FieldDisplayName values.
cellConsumerInitArgs.FieldName = _cellName;
cellConsumerInitArgs.FieldDisplayName = _cellDisplayName;
// Fire the CellConsumerInit event.
CellConsumerInit(this, cellConsumerInitArgs);
}
}
}
Thread safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.