Property | Type | Description |
---|
Method | Description | |
---|---|---|
GetCells ( Row xRow ) : IEnumerable |
||
GetColumnIndexFromName ( string columnName ) : int? |
Given just the column name (no row index), it will return the zero based column index. Note: This method will only handle columns with a length of up to two (ie. A to Z and AA to ZZ). A length of three can be implemented when needed.
|
|
GetColumnName ( string cellReference ) : string |
Given a cell name, parses the specified cell to get the column name.
|
|
OpenXLRow ( ) : System | ||
OpenXLRow ( DocumentFormat.OpenXml.Packaging.WorkbookPart wbPart, DocumentFormat.OpenXml.Packaging.WorksheetPart wsPart, List |
||
OpenXLRow ( DocumentFormat.OpenXml.Packaging.WorkbookPart wbPart, DocumentFormat.OpenXml.Packaging.WorksheetPart wsPart, List |
||
this ( int index ) : string | ||
this ( string col ) : string |
Method | Description | |
---|---|---|
ReadCell ( Cell cellToRead ) : String |
public GetColumnIndexFromName ( string columnName ) : int? | ||
columnName | string | Column Name (ie. A or AB) |
return | int? |
public GetColumnName ( string cellReference ) : string | ||
cellReference | string | Address of the cell (ie. B2) |
return | string |
public OpenXLRow ( DocumentFormat.OpenXml.Packaging.WorkbookPart wbPart, DocumentFormat.OpenXml.Packaging.WorksheetPart wsPart, List |
||
wbPart | DocumentFormat.OpenXml.Packaging.WorkbookPart | |
wsPart | DocumentFormat.OpenXml.Packaging.WorksheetPart | |
columns | List |
|
xRow | Row | |
return | System |
public OpenXLRow ( DocumentFormat.OpenXml.Packaging.WorkbookPart wbPart, DocumentFormat.OpenXml.Packaging.WorksheetPart wsPart, List |
||
wbPart | DocumentFormat.OpenXml.Packaging.WorkbookPart | |
wsPart | DocumentFormat.OpenXml.Packaging.WorksheetPart | |
columns | List |
|
rowNum | int | |
return | System |
protected ReadCell ( Cell cellToRead ) : String | ||
cellToRead | Cell | |
return | String |