Singer Instruments PIXL Client
AvailableColonyDetectionProjectTemplates Property
Example 



SI.PIXL.Client Namespace > PIXLClient Class : AvailableColonyDetectionProjectTemplates Property
Get the available project templates for the Colony Detection workflow.
Syntax
'Declaration
 
Public ReadOnly Property AvailableColonyDetectionProjectTemplates As String()
'Usage
 
Dim instance As PIXLClient
Dim value() As String
 
value = instance.AvailableColonyDetectionProjectTemplates
public string[] AvailableColonyDetectionProjectTemplates {get;}
public:
property array<String^>^ AvailableColonyDetectionProjectTemplates {
   array<String^>^ get();
}
Example
This sample shows how to call the AvailableColonyDetectionProjectTemplates property. 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'.
// Get all available Colony Detection project templates.
var templates = pixl.AvailableColonyDetectionProjectTemplates;
             
// 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