SendXoff Method
Causes transmission to act as if an XOFF character has been received.
Syntax
Visual Basic
object.SendXoff
Visual C++
object.SendXoff()
Delphi
object.SendXoff
| Part
| Description |
| object |
An object expression that evaluates to a PortController object.
|
Example
Visual Basic
myPortController.SendXoff
Visual C++
m_myPortController.SendXoff();
Delphi
myPortController.SendXoff;
Remarks
This method simulates the receipt of an Xoff character from a remote device.
This suspends the sending of data from the transmission queue to the remote device.
Returns
Nothing
Errors
Calling the SendXoff 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, SendXon()
|