NamedRange::Rows Property

 

Gets a Microsoft.Office.Interop.Excel::Range that represents one or more rows in the NamedRange control.

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

property Range^ Rows {
	Range^ get();
}

Property Value

Type: Microsoft.Office.Interop.Excel::Range^

A Microsoft.Office.Interop.Excel::Range that represents one or more rows in the NamedRange control.

When used without parameters, this property returns a Range object that contains all the rows in the named range.

This property can be used with the following optional parameters to get specific rows in the named range. 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.

The following code example creates a NamedRange and then uses the Rows property to set the color, name, size, and boldness of the font of all the cells in the first five rows in the range.

This example is for a document-level customization. To run this code, copy it into one of the worksheet classes in your project.

No code example is currently available or this language may not be supported.

The following code example creates a NamedRange and then uses the Rows property to determine how many rows there are in the range.

This example is for a document-level customization. To run this code, copy it into one of the worksheet classes in your project.

No code example is currently available or this language may not be supported.
Return to top
Show: