SendXon Method
Causes transmission to act as if an XON character has been received..
Syntax
Visual Basic
object.SendXon
Visual C++
object.SendXon()
Delphi
object.SendXon;
| Part
| Description |
| object |
An object expression that evaluates to a PortController object.
|
Example
Visual Basic
myPortController.SendXon
Visual C++
m_myPortController.SendXon();
Delphi
myPortController.SendXon;
Remarks
This method simulates the receipt of an Xon character from a remote device.
This resumes the sending of data from the transmission queue to the remote device.
Returns
Nothing
Errors
Calling the SendXon method while the port is closed is not permitted and
will cause PortController to throw a "Port is closed" exception.
See Also
Break, Dsr, Rts, SendXoff()
|