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
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.