Condividi tramite


Proprietà XmlMappedRange.Rows

Ottiene un oggetto Range che rappresenta la riga in cui è contenuto il controllo XmlMappedRange.

Spazio dei nomi:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)

Sintassi

'Dichiarazione
ReadOnly Property Rows As Range
Range Rows { get; }

Valore proprietà

Tipo: Microsoft.Office.Interop.Excel.Range
Oggetto Range che rappresenta la riga in cui è contenuto il controllo XmlMappedRange.

Esempi

Nell'esempio di codice riportato di seguito viene utilizzata la proprietà Rows per aggiungere un commento alla riga di un controllo XmlMappedRange.Nell'esempio si presuppone che il foglio di lavoro corrente contenga un controllo XmlMappedRange denominato CustomerLastNameCell.

Private Sub AddCommentToRows()
    Me.CustomerLastNameCell.Rows.AddComment( _
        ("This row contains " & "customer last names."))
End Sub
private void AddCommentToRows()
{
    this.CustomerLastNameCell.Rows.AddComment("This row contains " +
        "customer last names.");
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

XmlMappedRange Interfaccia

Spazio dei nomi Microsoft.Office.Tools.Excel