Singer Instruments PIXL Client
RunRearrayWorkflow(String,String,String,ConsecutivePinningInstruction[]) Method
Example 



SI.PIXL.Client Namespace > PIXLClient Class > RunRearrayWorkflow Method : RunRearrayWorkflow(String,String,String,ConsecutivePinningInstruction[]) Method
The workflow's ID.
The name of the project template to use. If this is empty the last used settings will be used.
The name of the pinning profile to use. If this is not specified the profile from the current workflow will be used.
The consecutive pinnings used in the re-array.
Run the re-array workflow.
Syntax
'Declaration
 
Public Overloads Function RunRearrayWorkflow( _
   ByVal id As String, _
   ByVal projectTemplateName As String, _
   ByVal pinningProfileName As String, _
   ByVal consecutivePinningsInstruction() As ConsecutivePinningInstruction _
) As Task(Of RunRearrayCommandResponse)
'Usage
 
Dim instance As PIXLClient
Dim id As String
Dim projectTemplateName As String
Dim pinningProfileName As String
Dim consecutivePinningsInstruction() As ConsecutivePinningInstruction
Dim value As Task(Of RunRearrayCommandResponse)
 
value = instance.RunRearrayWorkflow(id, projectTemplateName, pinningProfileName, consecutivePinningsInstruction)

Parameters

id
The workflow's ID.
projectTemplateName
The name of the project template to use. If this is empty the last used settings will be used.
pinningProfileName
The name of the pinning profile to use. If this is not specified the profile from the current workflow will be used.
consecutivePinningsInstruction
The consecutive pinnings used in the re-array.

Return Value

The result of the action.
Example
This sample shows how to use the RunRearrayWorkflow(String,String,String,ConsecutivePinningInstruction[]) method.
Define some plates.
var plate1 = new Plate("Source_Plate_1", PlateTypes.PlusPlate_96, PlateRoles.Source);
var plate2 = new Plate("Target_Plate_1", PlateTypes.PlusPlate_96, PlateRoles.Target);
            
 Define some pinnings instructions.
var pinnings = new[]
{
    new ConsecutivePinningInstruction(new[]
    {
        new PinningInstruction(plate1, 1, 1),
        new PinningInstruction(plate2, 1, 1)
    })
};
// Run the re-array workflow for the defined pinning operations with the default project template and pinning profile.
pixl.RunRearrayWorkflow("1234", string.Empty, string.Empty, pinnings);
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
Overload List