[]
        
(Showing Draft Content)

C1.WPF.RulesManager.RulesEngineRange.-ctor

RulesEngineRange Constructor

RulesEngineRange()

Initializes a new instance of the RulesEngineRange class.

Declaration
public RulesEngineRange()
Public Sub New()

RulesEngineRange(int, int)

Initializes a new instance of the RulesEngineRange class.

Declaration
public RulesEngineRange(int firstItem, int lastItem)
Public Sub New(firstItem As Integer, lastItem As Integer)
Parameters
Type Name Description
int firstItem

The index of the first item where the rule is applied.

int lastItem

The index of the last item where the rule is applied.

RulesEngineRange(int, int, string)

Initializes a new instance of the RulesEngineRange class.

Declaration
public RulesEngineRange(int firstItem, int lastItem, string field)
Public Sub New(firstItem As Integer, lastItem As Integer, field As String)
Parameters
Type Name Description
int firstItem

The index of the first item where the rule is applied.

int lastItem

The index of the last item where the rule is applied.

string field

The field that determines the range where the rule is applied.

RulesEngineRange(string)

Initializes a new instance of the RulesEngineRange class.

Declaration
public RulesEngineRange(string field)
Public Sub New(field As String)
Parameters
Type Name Description
string field

The field of the item to compute the value.

RulesEngineRange(int?, int?, IReadOnlyList<string>)

Initializes a new instance of the RulesEngineRange class.

Declaration
public RulesEngineRange(int? firstItem, int? lastItem, IReadOnlyList<string> fields)
Public Sub New(firstItem As Integer?, lastItem As Integer?, fields As IReadOnlyList(Of String))
Parameters
Type Name Description
int? firstItem

The index of the first item where the rule is applied.

int? lastItem

The index of the last item where the rule is applied.

IReadOnlyList<string> fields

The fields that determines the range where the rule is applied.