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.
32 lines
1.1 KiB
32 lines
1.1 KiB
using System; |
|
|
|
namespace Kingo.Plugin.ShapeToKOApp.XSDClass |
|
{ |
|
// Token: 0x02000017 RID: 23 |
|
public class CLSymbol : LSymbol |
|
{ |
|
// Token: 0x17000061 RID: 97 |
|
// (get) Token: 0x060000DA RID: 218 RVA: 0x000031F4 File Offset: 0x000013F4 |
|
// (set) Token: 0x060000DB RID: 219 RVA: 0x0000320B File Offset: 0x0000140B |
|
public esriLineCapStyle Cap { get; set; } |
|
|
|
// Token: 0x17000062 RID: 98 |
|
// (get) Token: 0x060000DC RID: 220 RVA: 0x00003214 File Offset: 0x00001414 |
|
// (set) Token: 0x060000DD RID: 221 RVA: 0x0000322B File Offset: 0x0000142B |
|
public esriLineJoinStyle Join { get; set; } |
|
|
|
// Token: 0x17000063 RID: 99 |
|
// (get) Token: 0x060000DE RID: 222 RVA: 0x00003234 File Offset: 0x00001434 |
|
// (set) Token: 0x060000DF RID: 223 RVA: 0x0000324B File Offset: 0x0000144B |
|
public double MiterLimit { get; set; } |
|
|
|
// Token: 0x060000E0 RID: 224 RVA: 0x00003254 File Offset: 0x00001454 |
|
public CLSymbol() |
|
{ |
|
base.Type = "esriCLS"; |
|
base.Color = new int[4]; |
|
this.Cap = esriLineCapStyle.esriLCSButt; |
|
this.Join = esriLineJoinStyle.esriLJSBevel; |
|
} |
|
} |
|
}
|
|
|