C# 클래스 Smrf.AppLib.ExcelTableReader.ExcelTableRow

Represents one row in an Excel table.
Use TryGetNonEmptyStringFromCell to get one cell value. Use GetRangeForCell to get the one-cell Range object for a cell.
상속: Object
파일 보기 프로젝트 열기: 2014-sed-team3/term-project

보호된 프로퍼티들

프로퍼티 타입 설명
m_oExcelTableReader ExcelTableReader

공개 메소드들

메소드 설명
ExcelTableRow ( ExcelTableReader excelTableReader ) : System

Initializes a new instance of the ExcelTableRow class.

GetRangeForCell ( String columnName ) : Range
TryGetDoubleFromCell ( String columnName, Double &theDouble ) : System.Boolean
TryGetInt32FromCell ( String columnName, Int32 &int32 ) : System.Boolean
TryGetNonEmptyStringFromCell ( String columnName, String &nonEmptyString ) : System.Boolean
TryGetSingleFromCell ( String columnName, System.Single &theSingle ) : System.Boolean

비공개 메소드들

메소드 설명
AssertValid ( ) : void

메소드 상세

ExcelTableRow() 공개 메소드

Initializes a new instance of the ExcelTableRow class.
public ExcelTableRow ( ExcelTableReader excelTableReader ) : System
excelTableReader ExcelTableReader /// The table reader object that owns this object. ///
리턴 System

GetRangeForCell() 공개 메소드

public GetRangeForCell ( String columnName ) : Range
columnName String
리턴 Range

TryGetDoubleFromCell() 공개 메소드

public TryGetDoubleFromCell ( String columnName, Double &theDouble ) : System.Boolean
columnName String
theDouble Double
리턴 System.Boolean

TryGetInt32FromCell() 공개 메소드

public TryGetInt32FromCell ( String columnName, Int32 &int32 ) : System.Boolean
columnName String
int32 System.Int32
리턴 System.Boolean

TryGetNonEmptyStringFromCell() 공개 메소드

public TryGetNonEmptyStringFromCell ( String columnName, String &nonEmptyString ) : System.Boolean
columnName String
nonEmptyString String
리턴 System.Boolean

TryGetSingleFromCell() 공개 메소드

public TryGetSingleFromCell ( String columnName, System.Single &theSingle ) : System.Boolean
columnName String
theSingle System.Single
리턴 System.Boolean

프로퍼티 상세

m_oExcelTableReader 보호되어 있는 프로퍼티

protected ExcelTableReader,Smrf.AppLib m_oExcelTableReader
리턴 ExcelTableReader