Struct Location
Represents a location on a plate.
Inherited Members
Namespace: SI.PIXL.Client.Structs.PlateHandling
Assembly: SI.PIXL.Client.dll
Syntax
public struct Location
Constructors
Location(int, int, double, double)
Initialises a new instance of the location struct.
Declaration
public Location(int column, int row, double x, double y)
Parameters
| Type | Name | Description |
|---|---|---|
| int | column | The column of the location. |
| int | row | The row of the location. |
| double | x | The X position of the location. |
| double | y | The Y position of the location. |
Fields
None
A value representing no location.
Declaration
public static readonly Location None
Field Value
| Type | Description |
|---|---|
| Location |
Properties
Column
Get the column of the location.
Declaration
public int Column { get; }
Property Value
| Type | Description |
|---|---|
| int |
Row
Get the row of the location.
Declaration
public int Row { get; }
Property Value
| Type | Description |
|---|---|
| int |
X
Get the X position of the location from the centre of the plate, in millimetres.
Declaration
public double X { get; }
Property Value
| Type | Description |
|---|---|
| double |
Y
Get the Y position of the location from the centre of the plate, in millimetres.
Declaration
public double Y { get; }
Property Value
| Type | Description |
|---|---|
| double |