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.
21 lines
580 B
21 lines
580 B
using System; |
|
|
|
namespace Kingo.Framework.LayerStyleConvert.XSDClass |
|
{ |
|
// Token: 0x02000015 RID: 21 |
|
public class MarkLSymbol : LSymbol |
|
{ |
|
// Token: 0x17000058 RID: 88 |
|
// (get) Token: 0x060000C6 RID: 198 RVA: 0x00003064 File Offset: 0x00001264 |
|
// (set) Token: 0x060000C7 RID: 199 RVA: 0x0000307B File Offset: 0x0000127B |
|
public MSymbol MarkerSymbol { get; set; } |
|
|
|
// Token: 0x060000C8 RID: 200 RVA: 0x00003084 File Offset: 0x00001284 |
|
public MarkLSymbol() |
|
{ |
|
base.Type = "esriMLS"; |
|
base.Color = new int[4]; |
|
this.MarkerSymbol = new SMarkerSymbol(); |
|
} |
|
} |
|
}
|
|
|