AnswerFactory.AnswerFactoryRelay.SetPolygonAndElement C# (CSharp) Метод

SetPolygonAndElement() публичный Метод

public SetPolygonAndElement ( IPolygon polygon, IElement elm ) : void
polygon IPolygon
elm IElement
Результат void
        public void SetPolygonAndElement(IPolygon polygon, IElement elm)
        {
            this.Polygon = polygon;
            this.Element = elm;

            if (this.AoiHasBeenDrawn != null)
            {
                this.AoiHasBeenDrawn(this.Polygon, this.Element);
            }
        }