[]
Provides access to IRange objects in a worksheet.
public interface IRangeProvider
Public Interface IRangeProvider
IRangeProvider ranges = worksheet.Range;
IRange range = ranges["A1:B2"];
range.Value = "Ready";
object value = worksheet.Range["A1"].Value;
| Name | Description |
|---|---|
| this[int, int] | Gets the IRange object that represents the cell at the specified row and column. |
| this[int, int, int, int] | Gets the IRange object that represents the range at the specified row and column with the specified size. |
| this[string] | Gets the IRange object that is specified by its A1-style reference. |