using ESRI.ArcGIS.Carto; using ESRI.ArcGIS.Display; using stdole; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.Framework.LayerStyleConvert.XSDClass { public class AnnotationInfo { public SimpleTextSymbol Symbol { get; set; } public bool DisplayAnnotation { get; set; } public esriBasicOverposterFeatureType FeatureType { get; set; } public string Expression { get; set; } public AnnotationInfo() { FeatureType = esriBasicOverposterFeatureType.esriOverposterPolygon; this.Symbol = new SimpleTextSymbol(); } } }