C# 클래스 Smrf.NodeXL.ExcelTemplate.GraphMetricValueOrdered

Stores one graph metric value for one worksheet row, where the value is mapped to the next empty row.
The array of GraphMetricValueOrdered objects within should be written to the worksheet in sequential row order -- the first value in the first row, the second value in the second row, and so on.
상속: GraphMetricValue
파일 보기 프로젝트 열기: 2014-sed-team3/term-project 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
m_sStyle String

공개 메소드들

메소드 설명
AssertValid ( ) : void
GraphMetricValueOrdered ( ) : System

Initializes a new instance of the class with default values.

GraphMetricValueOrdered ( Object value ) : System

Initializes a new instance of the class with a specified value.

GraphMetricValueOrdered ( Object value, String style ) : System

Initializes a new instance of the class with a specified value and style.

If a style is ever applied to a row, a style should always be applied to the row. If the CellStyleNames.Bad style is applied when the row is bad, for example, using a default null style when the row is good would always leave the bad style in place. Instead, the CellStyleNames.GraphMetricGood style should be applied when the row is good.

메소드 상세

AssertValid() 공개 메소드

public AssertValid ( ) : void
리턴 void

GraphMetricValueOrdered() 공개 메소드

Initializes a new instance of the class with default values.
public GraphMetricValueOrdered ( ) : System
리턴 System

GraphMetricValueOrdered() 공개 메소드

Initializes a new instance of the class with a specified value.
public GraphMetricValueOrdered ( Object value ) : System
value Object /// Graph metric value for the row. ///
리턴 System

GraphMetricValueOrdered() 공개 메소드

Initializes a new instance of the class with a specified value and style.
If a style is ever applied to a row, a style should always be applied to the row. If the CellStyleNames.Bad style is applied when the row is bad, for example, using a default null style when the row is good would always leave the bad style in place. Instead, the CellStyleNames.GraphMetricGood style should be applied when the row is good.
public GraphMetricValueOrdered ( Object value, String style ) : System
value Object /// Graph metric value for the row. ///
style String /// Style of the row, or null to not apply a style. Sample: "Bad". The /// style overrides any style applied to the column. ///
리턴 System

프로퍼티 상세

m_sStyle 보호되어 있는 프로퍼티

protected String m_sStyle
리턴 String