doc: add econ-based text doc exported from previous ear-based eCdoc format.
[sdk] / doc / ecere / ecere / gui / BorderStyle.econ
1 {
2    name = "BorderStyle",
3    description = "The type of Window frame your Window has.",
4    usage = "BorderStyle is generally set within the instantiation of a window or control.",
5    example = "class MyForm : Window { text = \"MyForm\", borderStyle = sizable };",
6    also = "Window",
7    values = [
8       {
9          "bevel",
10          {
11             description = "Non-Sizable. Looks like it is raised out from the screen; like a button that is not pressed."
12          }
13       },
14       {
15          "contour",
16          {
17             description = "Non-Sizable. A single black line tracing the rectangle of the Window. No Title Bar."
18          }
19       },
20       {
21          "deep",
22          {
23             description = "Non-Sizable. Looks like it sinks into the screen; like a button that's been pressed."
24          }
25       },
26       {
27          "deepContour",
28          {
29             description = "Non-Sizable. Looks like it sinks into the screen; like a button that is pressed. A single black line traces the rectangle of the Window. No Title Bar."
30          }
31       },
32       {
33          "fixed",
34          {
35             description = "Non-Sizable. Has Title Bar."
36          }
37       },
38       {
39          "fixedBevel",
40          {
41             description = "Non-Sizable. Has Title Bar. The area not included with the Title Bar looks like it is raised out of the screen; like a button that is not pressed."
42          }
43       },
44       {
45          "fixedDeep",
46          {
47             description = "Non-Sizable. Has Title Bar. The area not included with the Title Bar looks like it sinks into the screen; like a button that is pressed."
48          }
49       },
50       {
51          "none",
52          {
53             description = "Non-Sizable. No Border. No Title Bar."
54          }
55       },
56       {
57          "sizable",
58          {
59             description = "The border can be clicked and dragged to resize it. Has Title Bar."
60          }
61       },
62       {
63          "sizableBevel",
64          {
65             description = "The border can be clicked and dragged to resize it. Has Title Bar. The area not included with the Title Bar looks like it is raised out from the screen; like a button that is not pressed."
66          }
67       },
68       {
69          "sizableDeep",
70          {
71             description = "The border can be clicked and dragged to resize it. Has Title Bar. The area not included with the Title Bar looks like it sinks into the screen; like a button that's been pressed."
72          }
73       }
74    ]
75 }