MultipleFilterCollection
Add Method (DateTimeGroupingType, Int32, Int32, Int32)
 | 
Adds a new entry to the collection based on the specified DateTimeGroupingType, year, month, and day.
Namespace:
Spire.Xls.Core.Spreadsheet.AutoFilter
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
 
public void Add(
	DateTimeGroupingType type,
	int year,
	int month,
	int day
)
 
Public Sub Add ( 
	type As DateTimeGroupingType,
	year As Integer,
	month As Integer,
	day As Integer
)
 
public:
void Add(
	DateTimeGroupingType type, 
	int year, 
	int month, 
	int day
)
 
member Add : 
type : DateTimeGroupingType * 
year : int * 
month : int * 
day : int -> unit 
 
 
 
Parameters
- 
type
 
- 
Type:
Spire.Xls.Core.Spreadsheet.AutoFilter
DateTimeGroupingType
The type of grouping to apply (e.g., Yearly, Monthly, Daily).
 
- 
year
 
- 
Type:
System
Int32
The year of the entry.
 
- 
month
 
- 
Type:
System
Int32
The month of the entry.
 
- 
day
 
- 
Type:
System
Int32
The day of the entry.
 
 
See Also