Interface IExcelWorker
Defines a contract for working with Excel files, providing methods to manipulate cells, styles, sheets, and formatting.
public interface IExcelWorker : IDisposable
- Inherited Members
- Extension Methods
Methods
AddSheet()
Adds a new sheet to the workbook.
IExcelWorker AddSheet()
Returns
- IExcelWorker
The current IExcelWorker instance for method chaining.
ContainsSheet(string)
Checks if a sheet with the specified name exists in the workbook.
bool ContainsSheet(string name)
Parameters
name
stringThe name of the sheet to check.
Returns
- bool
true
if the sheet exists; otherwise,false
.
GetCell<T>(int, int)
Gets the value of a cell at the specified column and row.
T GetCell<T>(int col, int row)
Parameters
Returns
- T
The value of the cell cast to type
T
.
Type Parameters
T
The type of the value to retrieve.
GetColumnsCount()
Gets the total number of columns in the current sheet.
int GetColumnsCount()
Returns
- int
The number of columns.
GetRowsCount()
Gets the total number of rows in the current sheet.
int GetRowsCount()
Returns
- int
The number of rows.
RenameSheet(string)
Renames the current sheet to the specified name.
IExcelWorker RenameSheet(string name)
Parameters
name
stringThe new name for the sheet.
Returns
- IExcelWorker
The current IExcelWorker instance for method chaining.
SetCell<T>(int, int, T)
Sets the value of a cell at the specified column and row.
IExcelWorker SetCell<T>(int col, int row, T value)
Parameters
col
intThe column index (1-based).
row
intThe row index (1-based).
value
TThe value to set in the cell.
Returns
- IExcelWorker
The current IExcelWorker instance for method chaining.
Type Parameters
T
The type of the value to set.
SetConditionalFormatting(int, ComparisonOperator, string, string, string)
Sets conditional formatting for a column based on a condition.
IExcelWorker SetConditionalFormatting(int col, ComparisonOperator op, string condition, string bgColor, string fgColor)
Parameters
col
intThe column index (1-based).
op
ComparisonOperatorThe ComparisonOperator to use for the condition.
condition
stringThe condition value as a string.
bgColor
stringThe background color to apply if the condition is met (e.g., hex code or name).
fgColor
stringThe foreground (text) color to apply if the condition is met (e.g., hex code or name).
Returns
- IExcelWorker
The current IExcelWorker instance for method chaining.
SetStyle(int, string)
Sets the style of a column using a custom format string.
IExcelWorker SetStyle(int col, string format)
Parameters
Returns
- IExcelWorker
The current IExcelWorker instance for method chaining.
SetStyle(int, Type)
Sets the style of a column based on a specified type.
IExcelWorker SetStyle(int col, Type type)
Parameters
Returns
- IExcelWorker
The current IExcelWorker instance for method chaining.
SwitchSheet(string)
Switches the active sheet to the one with the specified name.
IExcelWorker SwitchSheet(string name)
Parameters
name
stringThe name of the sheet to switch to.
Returns
- IExcelWorker
The current IExcelWorker instance for method chaining.