Singer Instruments PIXL Client
AvailablePinningProfiles Property (PIXLClient)
Example 



SI.PIXL.Client Namespace > PIXLClient Class : AvailablePinningProfiles Property
Get the available pinning profiles.
Syntax
'Declaration
 
Public ReadOnly Property AvailablePinningProfiles As String()
'Usage
 
Dim instance As PIXLClient
Dim value() As String
 
value = instance.AvailablePinningProfiles
public string[] AvailablePinningProfiles {get;}
public:
property array<String^>^ AvailablePinningProfiles {
   array<String^>^ get();
}
Example
This sample shows how to call the AvailablePinningProfiles property. If pinning profiles are present in multiple locations on the PIXL the name of the profile will be postfixed with and underscore and the location of the pinning profile. For example, if there is a pinning profile 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 pinning profiles.
var profiles = pixl.AvailablePinningProfiles;
             
// Iterate all profiles and display its name on the Console.
foreach (var profile in profiles)
    Console.WriteLine(profiles);
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