-
Notifications
You must be signed in to change notification settings - Fork 8
/
GClass4.cs
56 lines (50 loc) · 993 Bytes
/
GClass4.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
[TypeConverter(typeof(ExpandableObjectConverter))]
public class GClass4
{
private Pen pen_0 = new Pen(Color.Black);
public Color Color_0
{
get
{
return this.pen_0.Color;
}
set
{
this.pen_0.Color = value;
}
}
public DashStyle DashStyle_0
{
get
{
return this.pen_0.DashStyle;
}
set
{
this.pen_0.DashStyle = value;
}
}
public float Single_0
{
get
{
return this.pen_0.Width;
}
set
{
this.pen_0.Width = value;
}
}
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Pen Pen_0
{
get
{
return this.pen_0;
}
}
}