Share via


RowReadyEventArgs.Rows - Propriété

Remarque : cette API est désormais obsolète.

Obtient ou définit les lignes sélectionnées ou mis à jour à envoyer lors de l'événement RowReady se produit dans un composant WebPart qui implémente l'interface IRowProvider .

Espace de noms :  Microsoft.SharePoint.WebPartPages.Communication
Assembly :  Microsoft.SharePoint (dans Microsoft.SharePoint.dll)

Syntaxe

'Déclaration
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartRow instead")> _
Public Property Rows As DataRow()
    Get
    Set
'Utilisation
Dim instance As RowReadyEventArgs
Dim value As DataRow()

value = instance.Rows

instance.Rows = value
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartRow instead")]
public DataRow[] Rows { get; set; }

Valeur de propriété

Type : []
Un tableau de chaînes contenant les lignes sélectionnées ou mis à jour.

Exemples

L'exemple de code suivant montre une méthode substituée WebPart.PartCommunicationMain qui crée un objet RowReadyEventArgs , définit les valeurs de ligne et l'état de sélection, puis déclenche l'événement RowReady . Cet exemple de code fait partie d'un exemple plus développé fourni pour l'interface IRowProvider .

        // Step #8: Override the PartCommunicationMain method.
        // The PartCommunicationMain method is called by the Web Part 
        // infrastructure on the client during the 
        // ASP.NET PreRender event to allow the part to pass its 
        // primary data to the other connected parts.
        // It is important to always fire the RowReady event. Some 
        // parts may not behave properly if they are left waiting for 
        // this information.
        public override void PartCommunicationMain()
        {
            // Check if connected
            if(_connected)
            {
                //If there is a listener, fire the RowReady event.
                if (RowReady != null)
                {
                    // Create the RowReadyEventArgs object for the 
                    // RowReady event.
                    RowReadyEventArgs rowReadyEventArgs = new RowReadyEventArgs();

                    // Declare data Variables.
                    string selectionStatus = "";
                    DataRow[] dr = new DataRow[1];

                    // If a row is selected, send the row.
                    if ( _dataGrid.SelectedIndex > -1)
                    {
                        // Generate an array containing the selected 
                        // DataRow(s).
                        dr[0] = ((DataTable)_dataGrid.DataSource).Rows[_dataGrid.SelectedIndex];
                    
                        // Set the selection status.
                        selectionStatus = "Standard";

                    }
                    else
                    {
                        // The user hasn't selected a row so send null.
                        dr[0] = null;

                        // Set selection status.
                        selectionStatus = "None";
                    }

                    // Set Values
                    rowReadyEventArgs.Rows = dr;
                    rowReadyEventArgs.SelectionStatus = selectionStatus;

                    // Fire the RowReady event.
                    RowReady(this, rowReadyEventArgs);
                }
            }
        }
        ' Step #8: Override the PartCommunicationMain method.
        ' The PartCommunicationMain method is called by the Web Part 
        ' infrastructure on the client during the 
        ' ASP.NET PreRender event to allow the part to pass its 
        ' primary data to the other connected parts.
        ' It is important to always fire the RowReady event. Some 
        ' parts may not behave properly if they are left waiting for 
        ' this information.
        Public Overrides Sub PartCommunicationMain()
            ' Check if connected
            If _connected Then
                'If there is a listener, fire the RowReady event.
                If RowReady IsNot Nothing Then
                    ' Create the RowReadyEventArgs object for the 
                    ' RowReady event.
                    Dim rowReadyEventArgs As New RowReadyEventArgs()

                    ' Declare data Variables.
                    Dim selectionStatus As String = ""
                    Dim dr(0) As DataRow

                    ' If a row is selected, send the row.
                    If _dataGrid.SelectedIndex > -1 Then
                        ' Generate an array containing the selected 
                        ' DataRow(s).
                        dr(0) = (CType(_dataGrid.DataSource, DataTable)).Rows(_dataGrid.SelectedIndex)

                        ' Set the selection status.
                        selectionStatus = "Standard"

                    Else
                        ' The user hasn't selected a row so send null.
                        dr(0) = Nothing

                        ' Set selection status.
                        selectionStatus = "None"
                    End If

                    ' Set Values
                    rowReadyEventArgs.Rows = dr
                    rowReadyEventArgs.SelectionStatus = selectionStatus

                    ' Fire the RowReady event.
                    RaisEvent RowReady(Me, rowReadyEventArgs)
                End If
            End If
        End Sub

Voir aussi

Référence

RowReadyEventArgs classe

RowReadyEventArgs - Membres

Microsoft.SharePoint.WebPartPages.Communication - Espace de noms