Class CompassFilterCategory
This is the category of a filter type, like "Bug Status" or "Weapon Type".
Inheritance
System.Object
CompassFilterCategory
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)
Namespace: Phoenix.Controls.Compass
Assembly: Phoenix.Controls.Compass.dll
Syntax
public class CompassFilterCategory
Constructors
View SourceCompassFilterCategory(String, IEnumerable<String>)
Initializes a new instance of the CompassFilterCategory class. Initializes a new instance of CompassFilterCategory.
Declaration
public CompassFilterCategory(string name, IEnumerable<string> filters)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the filter category. |
System.Collections.Generic.IEnumerable<System.String> | filters | The collection of categories or items to filter by for this filter type. |
Properties
View SourceFilters
Gets all the filter entries under this category.
Declaration
public ObservableCollection<CompassFilterCategoryEntry> Filters { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<CompassFilterCategoryEntry> |
Name
Gets the name of the filter category.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
View SourceToString()
Returns a System.String that represents this instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents this instance. |
Overrides
System.Object.ToString()