[]
Get an IRange object that represents a cell or a range of cells.
IRange Range(string cell1, string cell2 = null)
Function Range(cell1 As String, Optional cell2 As String = Nothing) As IRange
Type | Name | Description |
---|---|---|
string | cell1 | The name of the range. This must be an A1-style reference. |
string | cell2 | The cell in the lower-right corner of the range. |
Type | Description |
---|---|
IRange | An IRange object which provide access to cell values, formulas, formatting... |
Get an IRange object that represents ranges of reference.
IRange Range(params Reference[] references)
Function Range(ParamArray references As Reference()) As IRange
Type | Name | Description |
---|---|---|
Reference[] | references | The name of the reference ranges. This must be an A1-style reference. |
Type | Description |
---|---|
IRange |