|
| | RangeTool (bool timeEnabled, bool cEnabled, int zmin, int zmax, int timeMin, int timeMax, int cmin, int cmax) |
| |
|
| override void | Dispose (bool disposing) |
| | Clean up any resources being used. More...
|
| |
Definition at line 13 of file RangeTool.cs.
◆ RangeTool()
| BioImager.RangeTool.RangeTool |
( |
bool |
timeEnabled, |
|
|
bool |
cEnabled, |
|
|
int |
zmin, |
|
|
int |
zmax, |
|
|
int |
timeMin, |
|
|
int |
timeMax, |
|
|
int |
cmin, |
|
|
int |
cmax |
|
) |
| |
Definition at line 15 of file RangeTool.cs.
16 {
17 InitializeComponent();
18 zMinBox.Value = zmin;
19 zMaxBox.Value = zmax;
20 if (!timeEnabled)
21 {
22 timeMinBox.Enabled = false;
23 timeMaxBox.Enabled = false;
24 return;
25 }
26 if(!cEnabled)
27 {
28 cMinBox.Enabled = false;
29 cMaxBox.Enabled = false;
30 }
31 timeMinBox.Value = timeMin;
32 timeMaxBox.Value = timeMax;
33
34 cMinBox.Value = cmin;
35 cMaxBox.Value = cmax;
36 }
◆ Dispose()
| override void BioImager.RangeTool.Dispose |
( |
bool |
disposing | ) |
|
|
protected |
Clean up any resources being used.
- Parameters
-
| disposing | true if managed resources should be disposed; otherwise, false. |
Definition at line 15 of file RangeTool.designer.cs.
16 {
17 if (disposing && (components != null))
18 {
19 components.Dispose();
20 }
21 base.Dispose(disposing);
22 }
◆ CMax
| int BioImager.RangeTool.CMax |
|
get |
Definition at line 78 of file RangeTool.cs.
79 {
80 get
81 {
82 return (int)cMaxBox.Value;
83 }
84 }
◆ CMin
| int BioImager.RangeTool.CMin |
|
get |
Definition at line 70 of file RangeTool.cs.
71 {
72 get
73 {
74 return (int)cMinBox.Value;
75 }
76 }
◆ TimeMax
| int BioImager.RangeTool.TimeMax |
|
get |
Definition at line 62 of file RangeTool.cs.
63 {
64 get
65 {
66 return (int)timeMaxBox.Value;
67 }
68 }
◆ TimeMin
| int BioImager.RangeTool.TimeMin |
|
get |
Definition at line 54 of file RangeTool.cs.
55 {
56 get
57 {
58 return (int)timeMinBox.Value;
59 }
60 }
◆ ZMax
| int BioImager.RangeTool.ZMax |
|
get |
Definition at line 46 of file RangeTool.cs.
47 {
48 get
49 {
50 return (int)zMaxBox.Value;
51 }
52 }
◆ ZMin
| int BioImager.RangeTool.ZMin |
|
get |
Definition at line 38 of file RangeTool.cs.
39 {
40 get
41 {
42 return (int)zMinBox.Value;
43 }
44 }
The documentation for this class was generated from the following files: