ASP.NET 3.5 and above only
Obout.Ajax.UI Controls - Color Picker - Client side
Obout.Ajax.UI.ColorPicker.ColorPickedEventArgs class
Inheritance HierarchySys.EventArgs Sys.CancelEventArgs Obout.Ajax.UI.ColorPicker.ColorPickedEventArgs
Argument of this type is passed to the handlers of the
picked event.
Note |
To get property values for client API properties, you must call property accessor method that is named with the get_ prefix. For example, to get a value for a property such as color, you call the get_color method:
|
function pickedHandler(sender, args) {
alert("Picked color: " + args.get_color());
} |
Properties
| Name |
Description |
cancel
|
string. Gets or sets a value that specifies whether the event source should cancel the operation that caused the event.
(Inherited from Sys.CancelEventArgs.)
|
color
|
string. Gets the picked color.
|