Interface IColorSelector
Wraps the functionality provided by the color picker
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public interface IColorSelector
Properties
ActiveMode
Gets or sets the active mode of the color tabs
Declaration
ColorPickerActiveMode ActiveMode { get; set; }
Property Value
ColorPickerActiveMode
|
AllowColorPickFromScreen
Allows or disallows picking colors from the screen
Declaration
bool AllowColorPickFromScreen { get; set; }
Property Value
System.Boolean
|
AllowColorSaving
Allows or disallows color saving
Declaration
bool AllowColorSaving { get; set; }
Property Value
System.Boolean
|
AllowEditHEXValue
Allows or disallows editing the hex value
Declaration
bool AllowEditHEXValue { get; set; }
Property Value
System.Boolean
|
BasicTabHeading
Gets or sets the heading of the basic colors tab
Declaration
string BasicTabHeading { get; set; }
Property Value
System.String
|
CustomColors
Gets the custom colors
Declaration
Color[] CustomColors { get; }
Property Value
System.Drawing.Color[]
|
OldColor
Gets or sets the old color
Declaration
Color OldColor { get; set; }
Property Value
System.Drawing.Color
|
OldColorLabelHeading
Gets or sets the heading of the old color label
Declaration
string OldColorLabelHeading { get; set; }
Property Value
System.String
|
ProfessionalTabHeading
Gets or sets the heading of the professional colors tab
Declaration
string ProfessionalTabHeading { get; set; }
Property Value
System.String
|
SelectedColor
Gets or sets the selected color
Declaration
Color SelectedColor { get; set; }
Property Value
System.Drawing.Color
|
SelectedColorLabelHeading
Gets or sets the heading of the selected color label
Declaration
string SelectedColorLabelHeading { get; set; }
Property Value
System.String
|
SelectedHslColor
Gets or sets the selected color
Declaration
HslColor SelectedHslColor { get; set; }
Property Value
HslColor
|
ShowBasicColors
Shows or hides the basic colors tab
Declaration
bool ShowBasicColors { get; set; }
Property Value
System.Boolean
|
ShowCustomColors
Shows or hides the custom colors panel
Declaration
bool ShowCustomColors { get; set; }
Property Value
System.Boolean
|
ShowHEXColorValue
Shows or hides the hex color textbox
Declaration
bool ShowHEXColorValue { get; set; }
Property Value
System.Boolean
|
ShowProfessionalColors
Shows or hides the professional colors tab
Declaration
bool ShowProfessionalColors { get; set; }
Property Value
System.Boolean
|
ShowSystemColors
Shows or hides the system colors tab
Declaration
bool ShowSystemColors { get; set; }
Property Value
System.Boolean
|
ShowWebColors
Shows or hides the web colors tab
Declaration
bool ShowWebColors { get; set; }
Property Value
System.Boolean
|
SystemTabHeading
Gets or sets the heading of the system colors tab
Declaration
string SystemTabHeading { get; set; }
Property Value
System.String
|
WebTabHeading
Gets or sets the heading of the web colors tab
Declaration
string WebTabHeading { get; set; }
Property Value
System.String
|
Events
CancelButtonClicked
Fires when the Cancel Button is clicked
Declaration
event ColorChangedEventHandler CancelButtonClicked
Event Type
ColorChangedEventHandler
|
OkButtonClicked
Fires when the OK Button is clicked
Declaration
event ColorChangedEventHandler OkButtonClicked
Event Type
ColorChangedEventHandler
|