Table of Contents

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

id string

Id.

name string

Name.

getFilterConditionAsync Func<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

Func<Task<FilterCondition>>

GetText

Gets or sets the function to get the text.

public Func<string>? GetText { get; set; }

Property Value

Func<string>

IconId

Gets or sets the icon id.

public ImageId? IconId { get; set; }

Property Value

ImageId

Id

Gets the identifier.

public string Id { get; }

Property Value

string

Name

Gets the name.

public string Name { get; }

Property Value

string