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.
27 lines
834 B
27 lines
834 B
using System; |
|
|
|
namespace Kingo.Plugin.ShapeToKOApp.XSDClass |
|
{ |
|
// Token: 0x0200000D RID: 13 |
|
public class SFSymbol : FSymbol |
|
{ |
|
// Token: 0x1700003B RID: 59 |
|
// (get) Token: 0x06000083 RID: 131 RVA: 0x00002A80 File Offset: 0x00000C80 |
|
// (set) Token: 0x06000084 RID: 132 RVA: 0x00002A97 File Offset: 0x00000C97 |
|
public esriSimpleFillStyle Style { get; set; } |
|
|
|
// Token: 0x1700003C RID: 60 |
|
// (get) Token: 0x06000085 RID: 133 RVA: 0x00002AA0 File Offset: 0x00000CA0 |
|
// (set) Token: 0x06000086 RID: 134 RVA: 0x00002AB7 File Offset: 0x00000CB7 |
|
public int[] Color { get; set; } |
|
|
|
// Token: 0x06000087 RID: 135 RVA: 0x00002AC0 File Offset: 0x00000CC0 |
|
public SFSymbol() |
|
{ |
|
base.Type = "esriSFS"; |
|
this.Style = esriSimpleFillStyle.esriSFSSolid; |
|
this.Color = new int[4]; |
|
base.Outline = new SLSymbol(); |
|
} |
|
} |
|
}
|
|
|