WorksheetBase.Rows Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a Range object that represents one or more rows on the worksheet.
public:
property Microsoft::Office::Interop::Excel::Range ^ Rows { Microsoft::Office::Interop::Excel::Range ^ get(); };
public Microsoft.Office.Interop.Excel.Range Rows { get; }
member this.Rows : Microsoft.Office.Interop.Excel.Range
Public ReadOnly Property Rows As Range
Property Value
A Range object that represents one or more rows on the worksheet.
Examples
The following code example uses the Rows property to set the color, name, size, and boldness of the font of all the cells in the first five rows on the worksheet.
This example is for a document-level customization. To run this code, copy it into one of the worksheet classes in your project.
private void SetRowsFont()
{
Excel.Range fillRows = (Excel.Range)this.Rows["1:5"];
Excel.Font rowsFont = fillRows.Font;
// Set the font color to blue (RGB value 00 00 FF), and set other font properties.
rowsFont.Color = 0xFF0000;
rowsFont.Name = "Arial";
rowsFont.Size = 14;
rowsFont.Bold = false;
// Test the changes by writing a value to all the row cells.
fillRows.Value2 = "This is a test";
}
Private Sub SetRowsFont()
Dim fillRows As Excel.Range = TryCast(Me.Rows("1:5"), Excel.Range)
With fillRows.Font
' Set the font color to blue (RGB value 00 00 FF), and set other font properties.
.Color = &HFF0000
.Name = "Arial"
.Size = 14
.Bold = False
End With
' Test the changes by writing a value to all the row cells.
fillRows.Value2 = "This is a test"
End Sub
Remarks
When used without parameters, this property returns a Range object that contains all the rows on the worksheet.
This property can be used with the following optional parameters to get specific rows on the worksheet. If you use this property with parameters, the return value is an object that must be cast to a Range.
Parameter | Description |
---|---|
RowIndex |
The index of one or more rows to get. To get a single row, pass an integer that specifies the index of the row you want to get. The row indexes begin at 1. To get multiple contiguous rows, pass a string with the format " first row :last row ". For example, to get rows 1 through 5, pass "1:5". |
ColumnIndex |
Do not use this parameter. This property will throw a COMException if you try to pass a value to this parameter. |