C# Класс SympleLib.OpenXml.Reader.OpenXLRow

Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
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 columns, Row xRow ) : System
OpenXLRow ( DocumentFormat.OpenXml.Packaging.WorkbookPart wbPart, DocumentFormat.OpenXml.Packaging.WorksheetPart wsPart, List columns, int rowNum ) : System
this ( int index ) : string
this ( string col ) : string

Защищенные методы

Метод Описание
ReadCell ( Cell cellToRead ) : String

Описание методов

GetCells() публичный Метод

public GetCells ( Row xRow ) : IEnumerable
xRow Row
Результат IEnumerable

GetColumnIndexFromName() публичный Метод

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.
public GetColumnIndexFromName ( string columnName ) : int?
columnName string Column Name (ie. A or AB)
Результат int?

GetColumnName() публичный Метод

Given a cell name, parses the specified cell to get the column name.
public GetColumnName ( string cellReference ) : string
cellReference string Address of the cell (ie. B2)
Результат string

OpenXLRow() публичный Метод

public OpenXLRow ( ) : System
Результат System

OpenXLRow() публичный Метод

public OpenXLRow ( DocumentFormat.OpenXml.Packaging.WorkbookPart wbPart, DocumentFormat.OpenXml.Packaging.WorksheetPart wsPart, List columns, Row xRow ) : System
wbPart DocumentFormat.OpenXml.Packaging.WorkbookPart
wsPart DocumentFormat.OpenXml.Packaging.WorksheetPart
columns List
xRow Row
Результат System

OpenXLRow() публичный Метод

public OpenXLRow ( DocumentFormat.OpenXml.Packaging.WorkbookPart wbPart, DocumentFormat.OpenXml.Packaging.WorksheetPart wsPart, List columns, int rowNum ) : System
wbPart DocumentFormat.OpenXml.Packaging.WorkbookPart
wsPart DocumentFormat.OpenXml.Packaging.WorksheetPart
columns List
rowNum int
Результат System

ReadCell() защищенный Метод

protected ReadCell ( Cell cellToRead ) : String
cellToRead Cell
Результат String

this() публичный Метод

public this ( int index ) : string
index int
Результат string

this() публичный Метод

public this ( string col ) : string
col string
Результат string