SetRgnColorHSVRange example for C++ 5.0 and later

//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
void CRemapHueDlg::OnSetRgnColorHSVRange() 
{
   int   H0,S0,V0,H1,S1,V1;
   
   H0 = 75;
   S0 = 40;
   V0 = 40;
   
   H1 = 95;
   S1 = 255;
   V1 = 255;
   m_RasterView.GetRaster().SetRgnColorHSVRange(H0, S0, V0, H1, S1, V1, L_RGN_SET);
   m_RasterView.SetRgnFrameType(RGNFRAME_ANIMATED);
}