Assembly: AForge.Controls (in AForge.Controls.dll) Version: 2.2.5.0 (2.2.5.0)
Syntax
C# |
---|
public enum ColorSliderType |
Members
Member name | Description | |
---|---|---|
Gradient |
Gradient color slider type.
| |
InnerGradient |
Inner gradient color slider type.
| |
OuterGradient |
Outer gradient color slider type.
| |
Threshold |
Threshold color slider type.
|
Remarks
The Gradient slider's type supposes the control's background filled with gradient startting from StartColor color and ending with EndColor color. The FillColor color does not have impact on control's look.
This type allows as one-arrow, as two-arrows control.
Sample control's look:

The InnerGradient slider's type supposes the control's background filled with gradient startting from StartColor color and ending with EndColor color. In addition the areas, which are outside of [Min, Max] range, are filled with FillColor color.
This type allows only two-arrows control.
Sample control's look:

The OuterGradient slider's type supposes the control's background filled with gradient startting from StartColor color and ending with EndColor color. In addition the area, which is inside of [Min, Max] range, is filled with FillColor color.
This type allows only two-arrows control.
Sample control's look:

The Threshold slider's type supposes filling areas outside of [Min, Max] range with StartColor and inside the range with EndColor. The FillColor color does not have impact on control's look.
This type allows as one-arrow, as two-arrows control.
Sample control's look:
