ClearTQ Method
Clears data from the transmit queue.
Syntax
Visual Basic
object.ClearTQ
Visual C++
object.ClearTQ()
Delphi
object.ClearTQ
| Part
| Description |
| object |
An object expression that evaluates to a PortController object.
|
Example
Visual Basic
myPortController.ClearTQ
Visual C++
m_myPortController.ClearTQ();
Delphi
myPortController.ClearTQ;
Remarks
None
Returns
Nothing
Errors
Attempting to clear the transmit queue when the port is closed will cause
the PortController to throw a "Port is closed." exception.
See Also
BytesUsedTQ, BytesUsedRQ, ClearRQ()
|