Hi Renu,
All you need to do is use the GraphicsPath to do the HitTesting
this will do what you want.
public bool HitTest(Point p)
{
if(path.IsVisible(p))
return(true);
else
return(false);
}
Mike Powell
www.ramuseco.com
"renu" <re*************@gmail.comwrote in message
news:11**********************@51g2000cwl.googlegro ups.com...
>
Hello,
I have drawn polygon on window. And I want to check wheather given
point is in that polygon region or not? How shold I find that? I have
created object of class region
GraphicsPath path = new GraphicsPath();
path.AddPolygon(pts); //////// Some points I have passed
Region rgn = new Region(path);
RegionData rgnDta = rgn.GetRegionData();
Now I have to check Wheather any point That I will give is in that
Region or not?
Please send me solution of this problem.
Thanks in advance.