Table of Contents

Interface IRange

Namespace
Ecng.ComponentModel
Assembly
Ecng.ComponentModel.dll

Represents a range with a minimum and maximum value.

public interface IRange
Extension Methods

Properties

HasMaxValue

Gets a value indicating whether this instance has a maximum value.

bool HasMaxValue { get; }

Property Value

bool

HasMinValue

Gets a value indicating whether this instance has a minimum value.

bool HasMinValue { get; }

Property Value

bool

Max

Gets or sets the maximum value of the range.

object Max { get; set; }

Property Value

object

Min

Gets or sets the minimum value of the range.

object Min { get; set; }

Property Value

object