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.
25 lines
816 B
25 lines
816 B
using System; |
|
|
|
namespace Kingo.Framework.LayerStyleConvert.XSDClass |
|
{ |
|
// Token: 0x02000083 RID: 131 |
|
public class MarkerGraphicsClass : TypeObject |
|
{ |
|
// Token: 0x170001AB RID: 427 |
|
// (get) Token: 0x060004CF RID: 1231 RVA: 0x000193DC File Offset: 0x000175DC |
|
// (set) Token: 0x060004D0 RID: 1232 RVA: 0x000193F3 File Offset: 0x000175F3 |
|
public GeometryClass Geometry { get; set; } |
|
|
|
// Token: 0x170001AC RID: 428 |
|
// (get) Token: 0x060004D1 RID: 1233 RVA: 0x000193FC File Offset: 0x000175FC |
|
// (set) Token: 0x060004D2 RID: 1234 RVA: 0x00019413 File Offset: 0x00017613 |
|
public CIMLineSymbol Symbol { get; set; } |
|
|
|
// Token: 0x060004D3 RID: 1235 RVA: 0x0001941C File Offset: 0x0001761C |
|
public MarkerGraphicsClass() |
|
{ |
|
base.Type = "CIMMarkerGraphic"; |
|
this.Symbol = new CIMLineSymbol(); |
|
} |
|
} |
|
}
|
|
|