|
PortController.NET
Ring Property
Returns the state of the ring line.
Syntax
[Visual Basic]
object.Ring
[C#]
object.Ring
[C++]
object->Ring
Parameters
object
An object expression that evaluates to a PortController object.
Return Value
The boolean value true if the Ring signal is on, false otherwise.
Default
False
Remarks
This property is read-only.
Errors
None
Example
[Visual Basic]
Dim ring As Boolean
ring = myPortController.Ring
[C#]
Boolean ring = myPortController.Ring;
[C++]
Boolean ring = myPortController->Ring;
See Also
Cts property | Dsr property | Cd property
|