ExcelFilteringDataEventArgs Methods
Serves as a base class for classes providing data for events that allow you to customize filter conditions in the Excel-style filter dropdowns.| Name | Description |
|---|---|
| AddData(Object, String, Boolean) | Adds the specified data value by which the column being processed can be filtered, and the corresponding text to be displayed in the filter popup. |
| AddFilter(String, CriteriaOperator, Boolean) | Adds the specified filter condition by which the column being processed can be filtered, and the corresponding text to be displayed in the filter popup. |
| AddFilter(String, String, Boolean) | Adds the specified filter condition by which the column being processed can be filtered, and the corresponding text to be displayed in the filter popup. |
| ChangeText(Object, String) | Changes the display text in the filter popup for the specified data value. |
| ClearData() | Removes all items from the collection of data values by which the column being processed can be filtered. |
| Equals(Object, Object) static | Determines whether the specified object instances are considered equal. Inherited from Object. |
| Equals(Object) | Determines whether the specified object is equal to the current object. Inherited from Object. |
| GetDisplayTexts() | Returns an array of strings representing captions for filters in the popup. |
| GetFilterItems() | Returns the collection of custom filter conditions by which the column being processed can be filtered. |
| GetHashCode() | Serves as the default hash function. Inherited from Object. |
| GetType() | Gets the Type of the current instance. Inherited from Object. |
| GetValues() | Returns an array of objects representing data values by which the column being processed can be filtered. |
| MemberwiseClone() protected | Creates a shallow copy of the current Object. Inherited from Object. |
| ReferenceEquals(Object, Object) static | Determines whether the specified Object instances are the same instance. Inherited from Object. |
| RemoveData(Object) | Removes the specified data value by which the column being processed can be filtered from the filter popup. |
| ToString() | Returns a string that represents the current object. Inherited from Object. |
See Also