BioImager  3.9.1
A .NET microscopy imaging library. Supports various microscopes by using imported libraries & GUI automation. Supported libraries include PriorĀ® & ZeissĀ® & all devices supported by Micromanager 2.0 and python-microscope.
Loading...
Searching...
No Matches
BioImager.FunctionForm Class Reference
Inheritance diagram for BioImager.FunctionForm:

Public Member Functions

 FunctionForm (Function func)
 
 FunctionForm (Function func, string name)
 

Static Public Attributes

static InputSimulator input = new InputSimulator()
 

Protected Member Functions

override void Dispose (bool disposing)
 Clean up any resources being used. More...
 

Properties

Function Func [get, set]
 

Detailed Description

Definition at line 19 of file FunctionForm.cs.

Constructor & Destructor Documentation

◆ 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 }

Member Function Documentation

◆ Dispose()

override void BioImager.FunctionForm.Dispose ( bool  disposing)
protected

Clean up any resources being used.

Parameters
disposingtrue 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 }

Member Data Documentation

◆ input

InputSimulator BioImager.FunctionForm.input = new InputSimulator()
static

Definition at line 21 of file FunctionForm.cs.

Property Documentation

◆ Func

Function BioImager.FunctionForm.Func
getset

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: