Struct PinningInstruction
Represents a pinning instruction.
Inherited Members
Namespace: SI.PIXL.Client.Structs.Instructions
Assembly: SI.PIXL.Client.dll
Syntax
public struct PinningInstruction
Constructors
PinningInstruction(Plate, double, double)
Initializes a new instance of the PinningInstruction struct.
Declaration
public PinningInstruction(Plate plate, double x, double y)
Parameters
| Type | Name | Description |
|---|---|---|
| Plate | plate | The plate. |
| double | x | The x location. |
| double | y | The y location. |
PinningInstruction(Plate, int, int)
Initializes a new instance of the PinningInstruction struct.
Declaration
public PinningInstruction(Plate plate, int column, int row)
Parameters
| Type | Name | Description |
|---|---|---|
| Plate | plate | The plate. |
| int | column | The column. This is 1 based, e.g. A = 1, B = 2. |
| int | row | The row. This is 1 based, e.g. A = 1, B = 2. |
Properties
Plate
Get or set the plate.
Declaration
public Plate Plate { get; set; }
Property Value
| Type | Description |
|---|---|
| Plate |
X
Get or set the x location.
Declaration
public double X { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
Y
Get or set the y location.
Declaration
public double Y { get; set; }
Property Value
| Type | Description |
|---|---|
| double |