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

Stores parameters for a date/time dynamic filter.
A dynamic filter is a control that can be adjusted to selectively show and hide edges and vertices in the graph in real time. There is one control for each filterable column in the workbook. If the column is date, time, or date and time, an instance of this class is used to store the control's parameters.

Use the DynamicFilterUtil class to get collections of filter parameters.

상속: NumericFilterParameters
파일 보기 프로젝트 열기: 2014-sed-team3/term-project 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
m_eFormat ExcelColumnFormat

공개 메소드들

메소드 설명
AssertValid ( ) : void
DateTimeFilterParameters ( String columnName, Double minimumCellValue, Double maximumCellValue, ExcelColumnFormat format ) : System

Initializes a new instance of the class.

메소드 상세

AssertValid() 공개 메소드

public AssertValid ( ) : void
리턴 void

DateTimeFilterParameters() 공개 메소드

Initializes a new instance of the class.
public DateTimeFilterParameters ( String columnName, Double minimumCellValue, Double maximumCellValue, ExcelColumnFormat format ) : System
columnName String /// Name of the column that can be filtered on. ///
minimumCellValue Double /// Minimum cell value in the column, in Excel's date/time format. Sample: /// 39448.583333 (1/1/2008, 2 PM). ///
maximumCellValue Double /// Maximum cell value in the column, in Excel's date/time format. ///
format ExcelColumnFormat /// The column format. ///
리턴 System

프로퍼티 상세

m_eFormat 보호되어 있는 프로퍼티

protected ExcelColumnFormat m_eFormat
리턴 ExcelColumnFormat