Interface IExcelSheet
Assembly: LemonEdge.Document.Core.dll
Syntax
public interface IExcelSheet
Properties
Name
Declaration
Property Value
Methods
DeleteColumns(int, int)
Declaration
void DeleteColumns(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
DeleteRows(int, int)
Declaration
void DeleteRows(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
ForceRecalculateAll()
Declaration
void ForceRecalculateAll()
GetCell(int, int)
Declaration
IExcelSheetCell GetCell(int row, int col)
Parameters
Type |
Name |
Description |
int |
row |
|
int |
col |
|
Returns
GetRange(int, int, int, int)
Declaration
IEnumerable<IExcelSheetCell> GetRange(int startRow, int startCol, int endRow, int endCol)
Parameters
Type |
Name |
Description |
int |
startRow |
|
int |
startCol |
|
int |
endRow |
|
int |
endCol |
|
Returns
GetUsedCellRange()
Declaration
(int startRow, int startCol, int endRow, int endCol) GetUsedCellRange()
Returns
InsertColumns(int, int, bool)
Declaration
void InsertColumns(int index, int count, bool copyFromPriorColumn)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
bool |
copyFromPriorColumn |
|
InsertRows(int, int, bool)
Declaration
void InsertRows(int index, int count, bool copyFromPriorRow)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
bool |
copyFromPriorRow |
|
Extension Methods