WorksheetBase.get_Range Method
Gets a Range object that represents a cell or a range of cells. Use the Range property instead of this method.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntax
'Declaration
Public Function get_Range ( _
cell1 As Object, _
cell2 As Object _
) As Range
public Range get_Range(
Object cell1,
Object cell2
)
Parameters
cell1
Type: System.ObjectThe name of the range in A1-style notation in the language of the application. 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 are 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 application. This parameter is required.
cell2
Type: System.ObjectThe cell in the lower-right corner of the range. Can be a Range that contains a single cell, an entire column, an entire row, or it can be a string that names a single cell in the language of the application. This parameter is optional.
Return Value
Type: Range
A Range that represents a cell or a range of cells.
.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.