BioImager  4.9.0
A .NET microscopy imaging application based on Bio library. Supports various microscopes by using imported libraries & GUI automation. Supports XInput game controllers to move stage, take images, run ImageJ macros on images or Bio C# scripts.
Loading...
Searching...
No Matches
BioImager.MicroscopeConsole.Command Struct Reference

Public Types

enum  Type {
  SetStage , SetFocus , SetObjective , SetFilterWheel ,
  SetHXP , SetRLHalogen , SetTLHalogen , SetHXPShutter ,
  SetRLShutter , SetTLShutter , SetStageSWLimit , SetFocusSWLimit ,
  SetCalibration , GetStage , GetFocus , GetObjective ,
  GetFilterWheel , GetHXP , GetRLHalogen , GetTLHalogen ,
  GetHXPShutter , GetRLShutter , GetTLShutter , GetStageSWLimit ,
  GetFocusSWLimit , GetCalibration
}
 

Public Member Functions

 Command (Type t, double[] ds)
 

Public Attributes

double[] doubles
 
Command.Type type
 

Detailed Description

Definition at line 13 of file MicroscopeConsole.cs.

Member Enumeration Documentation

◆ Type

enum BioImager.MicroscopeConsole.Command.Type

Definition at line 15 of file MicroscopeConsole.cs.

16 {
17 SetStage,
18 SetFocus,
19 SetObjective,
20 SetFilterWheel,
21 SetHXP,
22 SetRLHalogen,
23 SetTLHalogen,
24 SetHXPShutter,
25 SetRLShutter,
26 SetTLShutter,
27 SetStageSWLimit,
28 SetFocusSWLimit,
29 SetCalibration,
30 GetStage,
31 GetFocus,
32 GetObjective,
33 GetFilterWheel,
34 GetHXP,
35 GetRLHalogen,
36 GetTLHalogen,
37 GetHXPShutter,
38 GetRLShutter,
39 GetTLShutter,
40 GetStageSWLimit,
41 GetFocusSWLimit,
42 GetCalibration,
43 }

Constructor & Destructor Documentation

◆ Command() [1/2]

BioImager.MicroscopeConsole.Command.Command ( )

Definition at line 46 of file MicroscopeConsole.cs.

47 {
48 doubles = null;
49 type = Type.SetStage;
50 }

◆ Command() [2/2]

BioImager.MicroscopeConsole.Command.Command ( Type t,
double[] ds )

Definition at line 51 of file MicroscopeConsole.cs.

52 {
53 doubles = ds;
54 type = t;
55 }

Member Data Documentation

◆ doubles

double [] BioImager.MicroscopeConsole.Command.doubles

Definition at line 44 of file MicroscopeConsole.cs.

◆ type

Command.Type BioImager.MicroscopeConsole.Command.type

Definition at line 45 of file MicroscopeConsole.cs.


The documentation for this struct was generated from the following file: