Table of Contents

Class Slider

Namespace
OmegaGUI.Model
Assembly
OmegaGUI.dll

Slider control

public class Slider : Control, ICloneable
Inheritance
Slider
Implements
Derived
Inherited Members
Extension Methods

Constructors

Slider()

public Slider()

Fields

ControlValue

protected int ControlValue

Field Value

int

Properties

Max

Maximum value for control - no auto-update

public int Max { get; set; }

Property Value

int

Min

Minimum value for control - no auto-update

public int Min { get; set; }

Property Value

int

OnChanged

A Lua script to execute when the control's value has changed

[FileType("Lua")]
public string? OnChanged { get; set; }

Property Value

string

Value

The current value of the control

public virtual int Value { get; set; }

Property Value

int