Table of Contents

Interface ISlider

Namespace
Fallencake.UI
Assembly
Fallencake.UI.dll

Minimal slider contract exposing current value and bounds with a formatted display value.

public interface ISlider

Properties

DisplayedValue

Readable value rendered according to configured precision/format.

float DisplayedValue { get; }

Property Value

float

MaxValue

Maximum allowed value.

float MaxValue { get; set; }

Property Value

float

MinValue

Minimum allowed value.

float MinValue { get; set; }

Property Value

float

Value

Current slider value in real units.

float Value { get; set; }

Property Value

float