|
| static InputSimulator | input = new InputSimulator() |
| |
|
| override void | Dispose (bool disposing) |
| | Clean up any resources being used. More...
|
| |
Definition at line 19 of file FunctionForm.cs.
◆ FunctionForm() [1/2]
| BioImager.FunctionForm.FunctionForm |
( |
Function |
func | ) |
|
Definition at line 34 of file FunctionForm.cs.
35 {
36 InitializeComponent();
37 Func = func;
38 Init();
39 }
◆ FunctionForm() [2/2]
| BioImager.FunctionForm.FunctionForm |
( |
Function |
func, |
|
|
string |
name |
|
) |
| |
Definition at line 40 of file FunctionForm.cs.
41 {
42 InitializeComponent();
43 Func = func;
44 func.Name = name;
45 Init();
46 }
◆ Dispose()
| override void BioImager.FunctionForm.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 FunctionForm.Designer.cs.
16 {
17 if (disposing && (components != null))
18 {
19 components.Dispose();
20 }
21 base.Dispose(disposing);
22 }
◆ input
| InputSimulator BioImager.FunctionForm.input = new InputSimulator() |
|
static |
◆ Func
Definition at line 23 of file FunctionForm.cs.
24 {
25 get
26 {
27 return func;
28 }
29 set
30 {
31 func = value;
32 }
33 }
The documentation for this class was generated from the following files: