年度变更建库软件5.0版本
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.
 
 

19 lines
413 B

using System;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using ESRI.ArcGIS.Display;
namespace KGIS.Plugin.LayerProperty.Interface
{
internal interface IUCSymbolAtrribute
{
event System.EventHandler SymbolEdited;
DockStyle Dock
{
get;
set;
}
bool Init(ref ISymbol symbol);
void SetPicture(PictureEdit pic);
}
}