Пример #1
0
        public bool HitTest(double x, double y, double Tolerance)
        {
            IPoint other = new ESRI.ArcGIS.Geometry.Point();

            other.PutCoords(x, y);
            IRelationalOperator @operator = new ESRI.ArcGIS.Geometry.Polygon() as IRelationalOperator;

            this.QueryOutline(this.m_pCachedDisplay, @operator as IPolygon);
            return([email protected](other));
        }