C# 클래스 SympleLib.OpenXml.Reader.OpenXLRow

파일 보기 프로젝트 열기: sympletech/SympleLib

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