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.Configuration Class Reference

Public Member Functions

 Configuration ()
 Initializes a new instance of the Configuration class. More...
 
 Configuration (string title)
 Initializes a new instance of the Configuration class. More...
 
 Configuration (string title, int width, int height)
 

Properties

string Title [get, set]
 Gets or sets the window title. More...
 
int Width [get, set]
 Gets or sets the width of the window. More...
 
int Height [get, set]
 Gets or sets the height of the window. More...
 
bool WaitVerticalBlanking [get, set]
 Gets or sets a value indicating whether [wait vertical blanking]. More...
 

Detailed Description

Definition at line 11 of file DBitmap.cs.

Constructor & Destructor Documentation

◆ Configuration() [1/3]

BioImager.Configuration.Configuration ( )

Initializes a new instance of the Configuration class.

Definition at line 16 of file DBitmap.cs.

16 : this("Bio")
17 {
19 }
bool WaitVerticalBlanking
Gets or sets a value indicating whether [wait vertical blanking].
Definition: DBitmap.cs:71

References BioImager.Configuration.WaitVerticalBlanking.

◆ Configuration() [2/3]

BioImager.Configuration.Configuration ( string  title)

Initializes a new instance of the Configuration class.

Definition at line 24 of file DBitmap.cs.

24 : this(title, 800, 600)
25 {
27 }

References BioImager.Configuration.WaitVerticalBlanking.

◆ Configuration() [3/3]

BioImager.Configuration.Configuration ( string  title,
int  width,
int  height 
)

Definition at line 29 of file DBitmap.cs.

30 {
31 Title = title;
32 Width = width;
33 Height = height;
35 }
int Height
Gets or sets the height of the window.
Definition: DBitmap.cs:59
int Width
Gets or sets the width of the window.
Definition: DBitmap.cs:50
string Title
Gets or sets the window title.
Definition: DBitmap.cs:41

Property Documentation

◆ Height

int BioImager.Configuration.Height
getset

Gets or sets the height of the window.

Definition at line 58 of file DBitmap.cs.

59 {
60 get;
61 set;
62 }

◆ Title

string BioImager.Configuration.Title
getset

Gets or sets the window title.

Definition at line 40 of file DBitmap.cs.

41 {
42 get;
43 set;
44 }

◆ WaitVerticalBlanking

bool BioImager.Configuration.WaitVerticalBlanking
getset

Gets or sets a value indicating whether [wait vertical blanking].

true if [wait vertical blanking]; otherwise, false.

Definition at line 70 of file DBitmap.cs.

71 {
72 get; set;
73 }

Referenced by BioImager.Configuration.Configuration().

◆ Width

int BioImager.Configuration.Width
getset

Gets or sets the width of the window.

Definition at line 49 of file DBitmap.cs.

50 {
51 get;
52 set;
53 }

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