|
| | Pen (ColorS col, ushort w, int bitsPerPixel) |
| |
| | Pen (ColorS col, int w, int bitsPerPixel) |
| |
| void | Dispose () |
| |
|
|
ColorS | color |
| |
|
ushort | width |
| |
|
byte | bitsPerPixel |
| |
◆ Pen() [1/2]
| Bio.Graphics.Pen.Pen |
( |
ColorS | col, |
|
|
ushort | w, |
|
|
int | bitsPerPixel ) |
19 {
20 color = col;
21 width = w;
22 this.bitsPerPixel = (byte)bitsPerPixel;
23 }
◆ Pen() [2/2]
| Bio.Graphics.Pen.Pen |
( |
ColorS | col, |
|
|
int | w, |
|
|
int | bitsPerPixel ) |
26 {
27 color = col;
28 width = (ushort)w;
29 this.bitsPerPixel = (byte)bitsPerPixel;
30 }
◆ Dispose()
| void Bio.Graphics.Pen.Dispose |
( |
| ) |
|
Dispose() is a function that is called when the object is no longer needed
33 {
34 color.Dispose();
35 }
The documentation for this struct was generated from the following file: