Singer Instruments PIXL Client
AvailableRearrayProjectTemplates Property
Example 



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