ColorKind
Specifies format used when value from drop-down (by user click) is transferred back to edit.property ColorKind: TNxColorKind read GetColorKind write FColorKind default ckDelphi;Remarks
Edit control accept color values in both formats (including color names).
Example:
uses NxTypes6;
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
NxColorPicker61.ColorKind := ckWeb;
NxColorPicker61.SelectedColor := clRed;
end;