SetRgnColorHSVRange example for C++ Builder

//This example sets a region corresponding to all pure green (Hue = 85)
//and colors near green (+/- 10)
//where Saturation is at least 40 and Value is at least 40
   short H0;
   short S0;
   short V0;
   short H1;
   short S1;
   short V1;

   H0 = 75;
   S0 = 40;
   V0 = 40;

   H1 = 95;
   S1 = 255;
   V1 = 255;
   LEADRasterView1->Raster->SetRgnColorHSVRange (H0, S0, V0, H1, S1, V1, L_RGN_SET);
   LEADRasterView1->RgnFrameType = RGNFRAME_ANIMATED;