C# Class 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.

Inheritance: NumericFilterParameters
显示文件 Open project: 2014-sed-team3/term-project Class Usage Examples

Protected Properties

Property Type Description
m_eFormat ExcelColumnFormat

Public Methods

Method Description
AssertValid ( ) : void
DateTimeFilterParameters ( String columnName, Double minimumCellValue, Double maximumCellValue, ExcelColumnFormat format ) : System

Initializes a new instance of the class.

Method Details

AssertValid() public method

public AssertValid ( ) : void
return void

DateTimeFilterParameters() public method

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. ///
return System

Property Details

m_eFormat protected_oe property

protected ExcelColumnFormat m_eFormat
return ExcelColumnFormat