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.MicroManager.Conf Struct Reference

Public Member Functions

 Conf (string Class, string Type, string[] Values)
 
override string ToString ()
 

Properties

string Class [get, set]
 
string Type [get, set]
 
string[] Values [get, set]
 

Detailed Description

Definition at line 25 of file MicroManager.cs.

Constructor & Destructor Documentation

◆ Conf()

BioImager.MicroManager.Conf.Conf ( string Class,
string Type,
string[] Values )

Definition at line 30 of file MicroManager.cs.

31 {
32 this.Class = Class;
33 this.Type = Type;
34 this.Values = Values;
35 }

Member Function Documentation

◆ ToString()

override string BioImager.MicroManager.Conf.ToString ( )

Definition at line 36 of file MicroManager.cs.

37 {
38 string s = Class + "," + Type + ",";
39 foreach (string item in Values)
40 {
41 s += item + ",";
42 }
43 return s;
44 }

Property Documentation

◆ Class

string BioImager.MicroManager.Conf.Class
getset

Definition at line 27 of file MicroManager.cs.

27{ get; set; }

◆ Type

string BioImager.MicroManager.Conf.Type
getset

Definition at line 28 of file MicroManager.cs.

28{ get; set; }

◆ Values

string [] BioImager.MicroManager.Conf.Values
getset

Definition at line 29 of file MicroManager.cs.

29{ get; set; }

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