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
577 B
21 lines
577 B
using System; |
|
|
|
namespace Kingo.Mobile.Shape2KOTool.XSDClass |
|
{ |
|
// Token: 0x02000013 RID: 19 |
|
public class SLSymbol : LSymbol |
|
{ |
|
// Token: 0x17000055 RID: 85 |
|
// (get) Token: 0x060000BE RID: 190 RVA: 0x00002FA8 File Offset: 0x000011A8 |
|
// (set) Token: 0x060000BF RID: 191 RVA: 0x00002FBF File Offset: 0x000011BF |
|
public esriSimpleLineStyle Style { get; set; } |
|
|
|
// Token: 0x060000C0 RID: 192 RVA: 0x00002FC8 File Offset: 0x000011C8 |
|
public SLSymbol() |
|
{ |
|
base.Type = "esriSLS"; |
|
this.Style = esriSimpleLineStyle.esriSLSSolid; |
|
base.Color = new int[4]; |
|
} |
|
} |
|
}
|
|
|