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.
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|