Struct PinningPosition
Represents a pinning position.
Inherited Members
Namespace: SI.PIXL.Client.Structs.CommandResponse.Workflows
Assembly: SI.PIXL.Client.dll
Syntax
public struct PinningPosition
  Constructors
PinningPosition(string, string, string, double, double, bool)
Initializes a new instance of the PinningPosition struct.
Declaration
public PinningPosition(string plateID, string plateName, string location, double x, double y, bool result)
  Parameters
| Type | Name | Description | 
|---|---|---|
| string | plateID | The plate ID.  | 
      
| string | plateName | The plate name.  | 
      
| string | location | The grid or well destination of the colony.  | 
      
| double | x | The x destination location on the plate.  | 
      
| double | y | The y destination location on the plate.  | 
      
| bool | result | If the position was pinned.  | 
      
Properties
Location
Get the grid or well destination of the colony.
Declaration
public string Location { 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 position was pinned.
Declaration
public bool Result { get; }
  Property Value
| Type | Description | 
|---|---|
| bool | 
X
Get the x destination location on the plate.
Declaration
public double X { get; }
  Property Value
| Type | Description | 
|---|---|
| double | 
Y
Get the Y destination location on the plate.
Declaration
public double Y { get; }
  Property Value
| Type | Description | 
|---|---|
| double |