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