Singer Instruments PIXL Client
RequiredPlateInteractions Property (PIXLClient)
Example 



SI.PIXL.Client Namespace > PIXLClient Class : RequiredPlateInteractions Property
Get the required plate interactions.
Syntax
'Declaration
 
Public ReadOnly Property RequiredPlateInteractions As PlateRequest()
'Usage
 
Dim instance As PIXLClient
Dim value() As PlateRequest
 
value = instance.RequiredPlateInteractions
public PlateRequest[] RequiredPlateInteractions {get;}
public:
property array<PlateRequest>^ RequiredPlateInteractions {
   array<PlateRequest>^ get();
}
Example
This sample shows how to handle the RequiredPlateInteractions property.
// Iterate all interactions.
foreach (var interaction in pixl.RequiredPlateInteractions)
{
    // Display the requests on the Console.
    Console.WriteLine($"Please {interaction.Action} {interaction.Plate.ID} ({interaction.Plate.Type}, {interaction.Plate.Role}) into the {interaction.Bay} bay.");
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

PIXLClient Class
PIXLClient Members