c# - How to show large icons when using axSymbologyControl? -
i'm using arcgis axsymbologycontrol. how show large icons?
public istylegalleryitem getitem() { m_stylegalleryitem = null; axsymbologycontrol1.styleclass = esrisymbologystyleclass.esristyleclassscalebars; this.showdialog() return m_stylegalleryitem; }
my desktop application
arcgis window
is there size
property can set? like
public istylegalleryitem getitem() { m_stylegalleryitem = null; axsymbologycontrol1.styleclass = esrisymbologystyleclass.esristyleclassscalebars; //try different x , y values here various sizes axsymbologycontrol1.size = new system.drawing.size(94, 264); this.showdialog() return m_stylegalleryitem; }
i have no experience esri/arcgis libraries, controls deriving system.windows.forms.control have property, , seems similar.
i found sample code buried in arcobjects sdk 10 .net api reference, pulled line above from. not sure if exact library using, perhaps docs provide better information i.
Comments
Post a Comment