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