Tengo característica ( polygon
) se obtuvo mediante spatial query
del mapa.
¿Cómo cambiar su color?
Utilicé este código pero no funcionó
IMxDocument mxDocument = application.Document as IMxDocument;
IActiveView activeView = mxDocument.ActiveView;
IRgbColor rgbColor = new RgbColorClass();
ISimpleFillSymbol fillSymbol = new SimpleFillSymbolClass();
IElement element = new PolygonElementClass();
rgbColor.Red = 255;
rgbColor.Green = 40;
rgbColor.Blue = 50;
fillSymbol.Color = rgbColor;
element.Geometry = parcel.Shape;
IFillShapeElement pFillElement = (IFillShapeElement)element;
pFillElement.Symbol = fillSymbol;
activeView.Refresh();