Range.Range Property
Office 2003
Returns a Range object that represents a cell or a range of cells.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)
public Range get_Item( /*in*/System.Object Cell1, /*in*/System.Object Cell2 );
In JScript, you can use Indexed Properties defined by a class, but you cannot define your own.
Parameters
- Cell1
Required Object. The name of the range. This must be an A1-style reference in the language of the macro. It can include the range operator (a colon), the intersection operator (a space), or the union operator (a comma). It can also include dollar signs, but they’re ignored. You can use a local defined name in any part of the range. If you use a name, the name is assumed to be in the language of the macro.
This property is relative to the Range object. For example, if the selection is cell C3, then Selection.Range("B1") returns cell D3 because it’s relative to the Range object returned by the Selection property. On the other hand, ActiveSheet.Range("B1") always returns cell B1.