Struct SourcePinningPosition
Represents a pinning position.
Inherited Members
Namespace: SI.PIXL.Client.Structs.CommandResponse.Workflows.RandomColonyPicking
Assembly: SI.PIXL.Client.dll
Syntax
public struct SourcePinningPositionConstructors
SourcePinningPosition(string, string, string, string, double, double, bool)
Initializes a new instance of the SourcePinningPosition struct.
Declaration
public SourcePinningPosition(string plateID, string plateName, string colonyID, string colonyName, double x, double y, bool result)Parameters
| Type | Name | Description | 
|---|---|---|
| string | plateID | The plate ID. | 
| string | plateName | The plate name. | 
| string | colonyID | The ID of the colony. | 
| string | colonyName | The name of the colony. | 
| double | x | The x location of the colony on the plate. | 
| double | y | The y location of the colony on the plate. | 
| bool | result | If the colony was picked. | 
Properties
ColonyID
Get the ID of the colony.
Declaration
public string ColonyID { get; }Property Value
| Type | Description | 
|---|---|
| string | 
ColonyName
Get the name of the colony.
Declaration
public string ColonyName { get; }Property Value
| Type | Description | 
|---|---|
| string | 
PlateID
Get the plate ID.
Declaration
public string PlateID { get; }Property Value
| Type | Description | 
|---|---|
| string | 
PlateName
Get the plate name.
Declaration
public string PlateName { get; }Property Value
| Type | Description | 
|---|---|
| string | 
Result
Get if the colony was picked.
Declaration
public bool Result { get; }Property Value
| Type | Description | 
|---|---|
| bool | 
X
Get the x location of the colony on the plate.
Declaration
public double X { get; }Property Value
| Type | Description | 
|---|---|
| double | 
Y
Get the Y location of the colony on the plate.
Declaration
public double Y { get; }Property Value
| Type | Description | 
|---|---|
| double |