XmlMappedRange.Rows Property

Gets a Range that represents the row that contains the XmlMappedRange control.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)

Syntax

'Declaration
ReadOnly Property Rows As Range
    Get
Range Rows { get; }

Property Value

Type: Microsoft.Office.Interop.Excel.Range
A Range that represents the row that contains the XmlMappedRange control.

Examples

The following code example uses the Rows property to add a comment to the row of an XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named 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.");
}

.NET Framework Security

See Also

Reference

XmlMappedRange Interface

Microsoft.Office.Tools.Excel Namespace