Ring Property
Returns the state of the ring line.
Syntax
Visual Basic
object.Ring
Visual C++
object.GetRing()
Delphi
object.Ring
| Part
| Description |
| object |
An object expression that evaluates to a PortController object.
|
Example
Visual Basic
Dim ring As Boolean
ring = myPortController.Ring
Visual C++
BOOL bRing = m_myPortController.GetRing();
Delphi
var ring: boolean; // declare variable in the proper place.
ring := myPortController.Ring;
Remarks
This property is read-only.
Returns
The boolean value TRUE if the Ring signal is on, FALSE otherwise.
Errors
None
See Also
Cd, Cts, Dsr
|