Table of Contents

Struct FloatRange

Namespace
Examine.Search
Assembly
Examine.Core.dll

Represents a range over float values.

public readonly struct FloatRange
Inherited Members

Constructors

FloatRange(string, float, bool, float, bool)

public FloatRange(string label, float min, bool minInclusive, float max, bool maxInclusive)

Parameters

label string
min float
minInclusive bool
max float
maxInclusive bool

Properties

Label

Label that identifies this range.

public string Label { get; }

Property Value

string

Max

Maximum.

public float Max { get; }

Property Value

float

MaxInclusive

True if the maximum value is inclusive.

public bool MaxInclusive { get; }

Property Value

bool

Min

Minimum.

public float Min { get; }

Property Value

float

MinInclusive

True if the minimum value is inclusive.

public bool MinInclusive { get; }

Property Value

bool