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

46 lines
1.5 KiB

using System;
namespace Kingo.Mobile.Shape2KOTool.XSDClass
{
// Token: 0x02000029 RID: 41
public class Template
{
// Token: 0x1700008E RID: 142
// (get) Token: 0x06000148 RID: 328 RVA: 0x00003B14 File Offset: 0x00001D14
// (set) Token: 0x06000149 RID: 329 RVA: 0x00003B2B File Offset: 0x00001D2B
public string Name { get; set; }
// Token: 0x1700008F RID: 143
// (get) Token: 0x0600014A RID: 330 RVA: 0x00003B34 File Offset: 0x00001D34
// (set) Token: 0x0600014B RID: 331 RVA: 0x00003B4B File Offset: 0x00001D4B
public string Description { get; set; }
// Token: 0x17000090 RID: 144
// (get) Token: 0x0600014C RID: 332 RVA: 0x00003B54 File Offset: 0x00001D54
// (set) Token: 0x0600014D RID: 333 RVA: 0x00003B6B File Offset: 0x00001D6B
public Prototype Prototype { get; set; }
// Token: 0x17000091 RID: 145
// (get) Token: 0x0600014E RID: 334 RVA: 0x00003B74 File Offset: 0x00001D74
// (set) Token: 0x0600014F RID: 335 RVA: 0x00003B8B File Offset: 0x00001D8B
public string DrawingTool { get; set; }
// Token: 0x06000150 RID: 336 RVA: 0x00003B94 File Offset: 0x00001D94
public Template()
{
this.Name = "";
this.Description = "";
this.Prototype = new Prototype();
this.DrawingTool = "esriFeatureEditToolPolygon";
}
// Token: 0x06000151 RID: 337 RVA: 0x00003BD0 File Offset: 0x00001DD0
public void SetAttributeValue(string attName, object value)
{
if (this.Prototype.Attributes.ContainsKey(attName))
{
this.Prototype.Attributes[attName] = value;
}
}
}
}