You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							49 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							49 lines
						
					
					
						
							1.1 KiB
						
					
					
				using System.Drawing; | 
						|
using ESRI.ArcGIS.esriSystem; | 
						|
using ESRI.ArcGIS.Display; | 
						|
 | 
						|
namespace KGIS.Plugin.LayerProperty.Interface | 
						|
{ | 
						|
    public interface IDoStyleGalleryClass | 
						|
    { | 
						|
        IEnumBSTR NewObjectTypes | 
						|
        { | 
						|
            get; | 
						|
        } | 
						|
        long Number | 
						|
        { | 
						|
            get; | 
						|
        } | 
						|
        int Index | 
						|
        { | 
						|
            get; | 
						|
            set; | 
						|
        } | 
						|
        string Name | 
						|
        { | 
						|
            get; | 
						|
            set; | 
						|
        } | 
						|
        string AliasName | 
						|
        { | 
						|
            get; | 
						|
            set; | 
						|
        } | 
						|
        string Description | 
						|
        { | 
						|
            get; | 
						|
            set; | 
						|
        } | 
						|
        double PreviewRatio | 
						|
        { | 
						|
            get; | 
						|
            set; | 
						|
        } | 
						|
        object get_NewObject(string newType); | 
						|
        void Preview(object galleryItem, int hDC, ref tagRECT rectangle); | 
						|
        Bitmap StyleGalleryItemToBmp(IDoStyleGalleryItem item, int height); | 
						|
        Bitmap StyleGalleryItemToBmp(IDoStyleGalleryItem item, int width, int height); | 
						|
        bool Update(); | 
						|
        void EditProperties(ref object galleryItem, ref int hWnd, ref bool ok); | 
						|
    } | 
						|
}
 | 
						|
 |