Class ExcelFilterDateGroupItem
- Namespace
- OfficeOpenXml.Filter
- Assembly
- EPPlus.dll
A date group for filters
public class ExcelFilterDateGroupItem : ExcelFilterItem
- Inheritance
-
ExcelFilterDateGroupItem
- Inherited Members
Constructors
ExcelFilterDateGroupItem(int)
Filter out the specified year
public ExcelFilterDateGroupItem(int year)
Parameters
year
intThe year
ExcelFilterDateGroupItem(int, int)
Filter out the specified year and month
public ExcelFilterDateGroupItem(int year, int month)
Parameters
ExcelFilterDateGroupItem(int, int, int)
Filter out the specified year, month and day
public ExcelFilterDateGroupItem(int year, int month, int day)
Parameters
ExcelFilterDateGroupItem(int, int, int, int)
Filter out the specified year, month, day and hour
public ExcelFilterDateGroupItem(int year, int month, int day, int hour)
Parameters
ExcelFilterDateGroupItem(int, int, int, int, int)
Filter out the specified year, month, day, hour and and minute
public ExcelFilterDateGroupItem(int year, int month, int day, int hour, int minute)
Parameters
ExcelFilterDateGroupItem(int, int, int, int, int, int)
Filter out the specified year, month, day, hour and and minute
public ExcelFilterDateGroupItem(int year, int month, int day, int hour, int minute, int second)
Parameters
year
intThe year
month
intThe month
day
intThe day
hour
intThe hour
minute
intThe minute
second
intThe second
Properties
Day
Day to filter on
public int? Day { get; }
Property Value
- int?
Grouping
The grouping. Is set depending on the selected constructor
public eDateTimeGrouping Grouping { get; }
Property Value
Hour
Hour to filter on
public int? Hour { get; }
Property Value
- int?
Minute
Minute to filter on
public int? Minute { get; }
Property Value
- int?
Month
Month to filter on
public int? Month { get; }
Property Value
- int?
Second
Second to filter on
public int? Second { get; }
Property Value
- int?
Year
Year to filter on
public int Year { get; }