Drawing Circle in ArcMap dynamically using c#.net

2397
0
03-11-2011 06:20 AM
VijayGone
New Contributor
HI,
Can you please help on creating circle (Circle 2 property in Symbol Selector box see attached pic) dynamically using c#.
I tried this code:

ICharacterMarkerSymbol cmSym = new CharacterMarkerSymbolClass();
cmSym.CharacterIndex = 40; // I want to add characterindex 33 to the same symbol
IRgbColor color = new RgbColorClass();
color.RGB = 0;
cmSym.Color = color;
cmSym.Size = 13;

classBreaks.set_Symbol(6, (ISymbol)cmSym);
Can you please give solutions...
0 Kudos
0 Replies