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.
26 lines
787 B
26 lines
787 B
using System; |
|
|
|
namespace Kingo.Plugin.ShapeToKOApp.XSDClass |
|
{ |
|
// Token: 0x02000014 RID: 20 |
|
public class HashLSymbol : LSymbol |
|
{ |
|
// Token: 0x17000056 RID: 86 |
|
// (get) Token: 0x060000C1 RID: 193 RVA: 0x00002FF4 File Offset: 0x000011F4 |
|
// (set) Token: 0x060000C2 RID: 194 RVA: 0x0000300B File Offset: 0x0000120B |
|
public double Angle { get; set; } |
|
|
|
// Token: 0x17000057 RID: 87 |
|
// (get) Token: 0x060000C3 RID: 195 RVA: 0x00003014 File Offset: 0x00001214 |
|
// (set) Token: 0x060000C4 RID: 196 RVA: 0x0000302B File Offset: 0x0000122B |
|
public LSymbol HashSymbol { get; set; } |
|
|
|
// Token: 0x060000C5 RID: 197 RVA: 0x00003034 File Offset: 0x00001234 |
|
public HashLSymbol() |
|
{ |
|
base.Type = "esriHLS"; |
|
base.Color = new int[4]; |
|
this.HashSymbol = new SLSymbol(); |
|
} |
|
} |
|
}
|
|
|