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

38 lines
1.3 KiB

4 months ago
using System;
namespace Kingo.Plugin.ShapeToKOApp.XSDClass
{
// Token: 0x02000011 RID: 17
public class MFSymbol : FSymbol
{
// Token: 0x1700004F RID: 79
// (get) Token: 0x060000B0 RID: 176 RVA: 0x00002EA8 File Offset: 0x000010A8
// (set) Token: 0x060000B1 RID: 177 RVA: 0x00002EBF File Offset: 0x000010BF
public double GridAngle { get; set; }
// Token: 0x17000050 RID: 80
// (get) Token: 0x060000B2 RID: 178 RVA: 0x00002EC8 File Offset: 0x000010C8
// (set) Token: 0x060000B3 RID: 179 RVA: 0x00002EDF File Offset: 0x000010DF
public MSymbol MarkerSymbol { get; set; }
// Token: 0x17000051 RID: 81
// (get) Token: 0x060000B4 RID: 180 RVA: 0x00002EE8 File Offset: 0x000010E8
// (set) Token: 0x060000B5 RID: 181 RVA: 0x00002EFF File Offset: 0x000010FF
public esriMarkerFillStyle Style { get; set; }
// Token: 0x17000052 RID: 82
// (get) Token: 0x060000B6 RID: 182 RVA: 0x00002F08 File Offset: 0x00001108
// (set) Token: 0x060000B7 RID: 183 RVA: 0x00002F1F File Offset: 0x0000111F
public int[] Color { get; set; }
// Token: 0x060000B8 RID: 184 RVA: 0x00002F28 File Offset: 0x00001128
public MFSymbol()
{
base.Type = "esriMAFS";
this.Color = new int[4];
base.Outline = new SLSymbol();
this.Style = esriMarkerFillStyle.esriMFSGrid;
}
}
}