Singer Instruments PIXL Client
Checking If A Plate Is Loaded
This topic assumes that there is an instance of the PIXLClient object called pixl. If this is not the case, please see the Connecting To The PIXL topic.

It will be times when it will be vital to check the following conditions:

It can be determined if a specific plate is loaded by calling the IsPlateLoaded method on the PIXLClient.

Checking if a plate is loaded
Copy Code
// Determine if a plate with an ID of "1234" is loaded.
var isLoaded = pixl.IsPlateLoaded("1234");

The location of a specific plate can be determined by calling the GetPlateLocation method on the PIXLClient.

Determining the location of a plate and display it on the Console
Copy Code
// Determine the bay a plate with an ID of "1234" is loaded in to.
var bay = pixl.GetPlateLocation("1234");

// Display the bay on the Console.
Console.WriteLine(bay);
See Also

Reference

Getting Started