ShowHueDlg example for Delphi

procedure TForm1.ShowHueDlg1Click(Sender: TObject); 
var
   nRet: L_INT; 
begin
   LEADDlgColor1.DlgFlags:= DLG_HUE_SHOW_PREVIEW Or
                             DLG_HUE_SHOW_TOOL_ZOOMLEVEL; 
   LEADDlgColor1.LEADImage:= LEADImage1; 
   LEADDlgColor1.LEADDlgService:= LEADDlgService1; 
   nRet:= LEADDlgColor1.ShowHueDlg ( Self ); 
   if ( nRet = SUCCESS_DLG_OK ) then
   begin
      LEADImage1.Hue ( LEADDlgColor1.Angle); 
   end; 
end;