Freigeben über


IRowProvider.RowProviderInit-Ereignis

HINWEIS: Diese API ist veraltet.

Sendet die Namen und den Anzeigenamen der Felder in der angegebenen Zeile.

Namespace:  Microsoft.SharePoint.WebPartPages.Communication
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartRow instead")> _
Event RowProviderInit As RowProviderInitEventHandler
'Usage
Dim instance As IRowProvider
Dim handler As RowProviderInitEventHandler

AddHandler instance.RowProviderInit, handler
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartRow instead")]
event RowProviderInitEventHandler RowProviderInit

Hinweise

Der Ereignishandler empfängt ein Argument vom Typ Microsoft.SharePoint.WebPartPages.Communication.RowProviderInitEventArgs , die Daten im Zusammenhang mit diesem Ereignis enthält. Die Eigenschaften für die RowProviderInitEventArgs FieldList und FieldDisplayList bieten Informationen speziell für dieses Ereignis.

Beispiele

Das folgende Codebeispiel zeigt eine überschriebene WebPart.PartCommunicationInit -Methode, die ein RowProviderInitEventArgs-Objekt erstellt, Feldnamen festgelegt und Anzeigen von Namen und anschließend wird das RowProviderInit -Ereignis ausgelöst. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die IRowProvider -Schnittstelle.

      ' Step #7: Override the PartCommunicationInit() method.
      ' The PartCommunicationInit method 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. Some 
      ' parts may not behave properly if this initialization 
      ' information is not received.
      Public Overrides Sub PartCommunicationInit()
            ' Ensure that all of the Web Part's controls are created.
            EnsureChildControls()

            ' Check if connected.
            If _connected Then
                ' Create the RowProviderInitEventArgs object for the 
                ' RowProviderInit event.
                Dim rowProviderInitEventArgs As New RowProviderInitEventArgs()

                ' Set the row field names.
                rowProviderInitEventArgs.FieldList = _rowFieldNames

                ' Set the row field display names.
                rowProviderInitEventArgs.FieldDisplayList = _rowFieldDisplayNames

                ' Fire the RowProviderInit event.
                RaiseEvent RowProviderInit(Me, rowProviderInitEventArgs)
            End If
        End Sub
        // Step #7: Override the PartCommunicationInit() method.
        // The PartCommunicationInit method 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. 
        // Some parts may not behave properly if this initialization 
        // information is not received.
        public override void PartCommunicationInit()
        {
            // Ensure that all of the Web Part's controls are created.
            EnsureChildControls();

            // Check if connected.
            if(_connected)
            {
                // If there is a listener, fire the RowProviderInit 
                // event.
                if (RowProviderInit != null)
                {
                    // Create the RowProviderInitEventArgs object for 
                    // the RowProviderInit event.
                    RowProviderInitEventArgs rowProviderInitEventArgs = new RowProviderInitEventArgs();
                    
                    // Set the row field names.
                    rowProviderInitEventArgs.FieldList = _rowFieldNames;

                    // Set the row field display names.
                    rowProviderInitEventArgs.FieldDisplayList = _rowFieldDisplayNames;

                    // Fire the RowProviderInit event.
                    RowProviderInit(this, rowProviderInitEventArgs);
                }
            }
        }

Siehe auch

Referenz

IRowProvider Schnittstelle

IRowProvider-Member

Microsoft.SharePoint.WebPartPages.Communication-Namespace