Class FilteredItemsCollection
Represents the class used for serializing the FilterCollection dictionary property of the GridExcelFilter class.
Inheritance
System.Object
FilteredItemsCollection
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.GridHelperClasses
Assembly: Syncfusion.GridHelperClasses.Windows.dll
Syntax
public class FilteredItemsCollection
Constructors
FilteredItemsCollection()
Initializes the instance of the FilteredItemsCollection class.
Declaration
public FilteredItemsCollection()
FilteredItemsCollection(String, List<String>)
Initializes the instance of the FilteredItemsCollection class with column name and its filtered values.
Declaration
public FilteredItemsCollection(string _column, List<string> _filterdValues)
Parameters
Type | Name | Description |
---|---|---|
System.String | _column | Name of the filtered column. |
System.Collections.Generic.List<System.String> | _filterdValues | Filtered values of the filtered column. |
Properties
Column
Gets or sets the column name of the FilterCollection.
Declaration
public string Column { get; set; }
Property Value
Type |
---|
System.String |
FilteredValues
Gets or sets the filtered values of the FilterCollection.
Declaration
public List<string> FilteredValues { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |