Singer Instruments PIXL Client
GetImplementedFeatures Method
Example 



SI.PIXL.Client Namespace > PIXLClient Class : GetImplementedFeatures Method
Get the features this SiLA2 device implements.
Syntax
'Declaration
 
Public Function GetImplementedFeatures() As List(Of String)
'Usage
 
Dim instance As PIXLClient
Dim value As List(Of String)
 
value = instance.GetImplementedFeatures()
public List<string> GetImplementedFeatures()
public:
List<String^>^ GetImplementedFeatures(); 

Return Value

The implemented features.
Example
This sample shows how to use the GetImplementedFeatures method.
// Display the PIXL's implemented features on the Console.
foreach (var feature in pixl.GetImplementedFeatures())
    Console.WriteLine($"PIXL implements feature {feature}.");
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