I'm using ArcGIS axSymbologyControl. How to 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 a
Size
property that you can set? Something likeI have no experience with the ESRI/ArcGIS libraries, but controls deriving from System.Windows.Forms.Control have this property, and this seems similar.
I found some sample code buried in the ArcObjects SDK 10 .NET API Reference, where I pulled that line above from. Not sure if that is the exact library you are using, but perhaps those docs will provide better information than I.