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.
41 lines
901 B
41 lines
901 B
using ArcShapeFileDLL; |
|
using Kingo.Plugin.ShapeToKOApp.Enum; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.Plugin.ShapeToKOApp.Class |
|
{ |
|
// Token: 0x0200003B RID: 59 |
|
public class ShapeFieldInfo |
|
{ |
|
|
|
public string FieldName { get; set; } |
|
|
|
public string FieldAlias { get; set; } |
|
|
|
public short FieldDecimal { get; set; } |
|
|
|
public short FieldSize { get; set; } |
|
|
|
|
|
public eFieldType FieldType { get; set; } |
|
|
|
|
|
public ShapeFieldInfo(ShapeField sf) |
|
{ |
|
this.FieldDecimal = sf.FieldDecimal; |
|
this.FieldName = sf.FieldName; |
|
this.FieldAlias = sf.FieldName; |
|
this.FieldSize = sf.FieldSize; |
|
this.FieldType = (eFieldType)sf.FieldType; |
|
} |
|
|
|
|
|
public ShapeFieldInfo() |
|
{ |
|
} |
|
} |
|
}
|
|
|