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.
33 lines
1.1 KiB
33 lines
1.1 KiB
using System; |
|
|
|
namespace Kingo.Plugin.ShapeToKOApp.XSDClass |
|
{ |
|
// Token: 0x0200001A RID: 26 |
|
public class SMarkerSymbol : MSymbol |
|
{ |
|
// Token: 0x1700006B RID: 107 |
|
// (get) Token: 0x060000F2 RID: 242 RVA: 0x00003424 File Offset: 0x00001624 |
|
// (set) Token: 0x060000F3 RID: 243 RVA: 0x0000343B File Offset: 0x0000163B |
|
public OutLine outline { get; set; } |
|
|
|
// Token: 0x1700006C RID: 108 |
|
// (get) Token: 0x060000F4 RID: 244 RVA: 0x00003444 File Offset: 0x00001644 |
|
// (set) Token: 0x060000F5 RID: 245 RVA: 0x0000345B File Offset: 0x0000165B |
|
public int[] Color { get; set; } |
|
|
|
// Token: 0x1700006D RID: 109 |
|
// (get) Token: 0x060000F6 RID: 246 RVA: 0x00003464 File Offset: 0x00001664 |
|
// (set) Token: 0x060000F7 RID: 247 RVA: 0x0000347B File Offset: 0x0000167B |
|
public esriSimpleMarkerStyle Style { get; set; } |
|
|
|
// Token: 0x060000F8 RID: 248 RVA: 0x00003484 File Offset: 0x00001684 |
|
public SMarkerSymbol() |
|
{ |
|
base.Type = "esriSMS"; |
|
this.Color = new int[4]; |
|
base.Size = 5.0; |
|
this.Style = esriSimpleMarkerStyle.esriSMSCircle; |
|
this.outline = new OutLine(); |
|
} |
|
} |
|
}
|
|
|