Open this Phidget with a specific label.

Namespace:  Phidgets
Assembly:  Phidget21.NET (in Phidget21.NET.dll) Version: 2.1.9.34

Syntax

C#
public void openLabel(
	string label
)
Visual Basic (Declaration)
Public Sub openLabel ( _
	label As String _
)
Visual C++
public:
void openLabel(
	String^ label
)

Parameters

label
Type: System..::.String
The Label

Remarks

Open is pervasive. What this means is that you can call open on a device before it is plugged in, and keep the device opened across device dis- and re-connections.

Open is Asynchronous. What this means is that open will return immediately – before the device being opened is actually available, so you need to use either the attach event or the waitForAttachment method to determine if a device is available before using it.

This version of open specifies a label - The label can be set and changed by using the setLabel method (setLabel is unsupported on Windows).

See Also