[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRangeProvider

IRangeProvider Interface

Provides access to IRange objects in a worksheet.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public interface IRangeProvider
Public Interface IRangeProvider
Examples
IRangeProvider ranges = worksheet.Range;
IRange range = ranges["A1:B2"];
range.Value = "Ready";
object value = worksheet.Range["A1"].Value;

Properties

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.