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.PycroManager.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 17 of file PycroManager.cs.

Constructor & Destructor Documentation

◆ Conf()

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

Definition at line 22 of file PycroManager.cs.

23 {
24 this.Class = Class;
25 this.Type = Type;
26 this.Values = Values;
27 }

Member Function Documentation

◆ ToString()

override string BioImager.PycroManager.Conf.ToString ( )

Definition at line 28 of file PycroManager.cs.

29 {
30 string s = Class + "," + Type + ",";
31 foreach (string item in Values)
32 {
33 s += item + ",";
34 }
35 return s;
36 }

Property Documentation

◆ Class

string BioImager.PycroManager.Conf.Class
getset

Definition at line 19 of file PycroManager.cs.

19{ get; set; }

◆ Type

string BioImager.PycroManager.Conf.Type
getset

Definition at line 20 of file PycroManager.cs.

20{ get; set; }

◆ Values

string [] BioImager.PycroManager.Conf.Values
getset

Definition at line 21 of file PycroManager.cs.

21{ get; set; }

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