Singer Instruments PIXL Client
AvailableRandomColonyPickingProjectTemplates Property
Example 



SI.PIXL.Client Namespace > PIXLClient Class : AvailableRandomColonyPickingProjectTemplates Property
Get the available project templates for the Random Colony Picking workflow. If project templates are present in multiple locations on the PIXL the name of the project template will be postfixed with and underscore and the location of the project template. For example, if there is a project template called 'Example' in both the CurrentUser and Import directories on the PIXL the returned names would be 'Example_CurrentUser' and 'Example_Import'.
Syntax
'Declaration
 
Public ReadOnly Property AvailableRandomColonyPickingProjectTemplates As String()
'Usage
 
Dim instance As PIXLClient
Dim value() As String
 
value = instance.AvailableRandomColonyPickingProjectTemplates
public string[] AvailableRandomColonyPickingProjectTemplates {get;}
public:
property array<String^>^ AvailableRandomColonyPickingProjectTemplates {
   array<String^>^ get();
}
Example
This sample shows how to call the AvailableRandomColonyPickingProjectTemplates property.
// Get all available Random Colony Picking project templates.
var templates = pixl.AvailableRandomColonyPickingProjectTemplates;
             
// Iterate all templates and display its name on the Console.
foreach (var template in templates)
    Console.WriteLine(template);
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