-
Notifications
You must be signed in to change notification settings - Fork 3
/
I_Note.CS
48 lines (39 loc) · 1.53 KB
/
I_Note.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
/* Model Controller / I_Note
Created : 2011-04-18
Last Modified : 2011-04-18
Author : Tom Coleman
Copyright : 2011-2011
By : University of Mississippi Medical Center */
using System ;
using System.Collections ;
using System.Drawing ;
using System.Windows.Forms ;
namespace ModelEditor
{ public class I_Note
{ public static void Install ()
{ Insert_Data Insert ;
String nl = Environment.NewLine ;
Insert = new Insert_Data () ;
Insert.Name = "Note" ;
Insert.Label = "<note>...</note>" ;
Insert.Content += " <note>" + nl ;
Insert.Content += " <row> </row>" + nl ;
Insert.Content += " <col> </col>" + nl ;
Insert.Content += " <high> </high>" + nl ;
Insert.Content += " <wide> </wide>" + nl ;
Insert.Content += " <name> </name>" + nl ;
Insert.Content += " <text> </text>" + nl ;
Insert.Content += " <text> </text>" + nl ;
Insert.Content += " </note>" + nl ;
Insert.WideContent += " <note>" + nl ;
Insert.WideContent += " <row> </row><col> </col>" + nl ;
Insert.WideContent += " <high> </high><wide> </wide>" + nl ;
Insert.WideContent += " <name> </name>" + nl ;
Insert.WideContent += " <text> </text>" + nl ;
Insert.WideContent += " <text> </text>" + nl ;
Insert.WideContent += " </note>" + nl ;
Insert_Manager.Add (Insert) ;
}
}
}
/* End */