Class CustomFilterOperator
- Namespace
- GroupeIsa.Neos.Designer.UIAbstractions
- Assembly
- GroupeIsa.Neos.Designer.UIAbstractions.dll
Represents a custom filter operator.
[ExcludeFromCodeCoverage]
public class CustomFilterOperator
- Inheritance
-
CustomFilterOperator
- Inherited Members
Constructors
CustomFilterOperator(string, string, Func<Task<FilterCondition>>)
Initializes a new instance of the CustomFilterOperator class.
public CustomFilterOperator(string id, string name, Func<Task<FilterCondition>> getFilterConditionAsync)
Parameters
idstringId.
namestringName.
getFilterConditionAsyncFunc<Task<FilterCondition>>Function to get the filter condition.
Properties
GetFilterConditionAsync
Gets the function to get the filter condition.
public Func<Task<FilterCondition>> GetFilterConditionAsync { get; }
Property Value
GetText
Gets or sets the function to get the text.
public Func<string>? GetText { get; set; }
Property Value
IconId
Gets or sets the icon id.
public ImageId? IconId { get; set; }
Property Value
Id
Gets the identifier.
public string Id { get; }
Property Value
Name
Gets the name.
public string Name { get; }