using Avalonia.Media;
namespace Avalonia.Controls
{
///
/// Defines a specific component in the RGB color model.
///
public enum RgbComponent
{
///
/// The Alpha component.
///
///
/// Also see:
///
Alpha = 0,
///
/// The Red component.
///
///
/// Also see:
///
Red = 1,
///
/// The Green component.
///
///
/// Also see:
///
Green = 2,
///
/// The Blue component.
///
///
/// Also see:
///
Blue = 3
};
}