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.
36 lines
640 B
36 lines
640 B
using System; |
|
using ArcShapeFileDLL; |
|
|
|
namespace Kingo.Framework.LayerStyleConvert |
|
{ |
|
// 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() |
|
{ |
|
} |
|
} |
|
}
|
|
|