|
PortController.NET
ClearTQ Method
Clears data from the transmit queue.
Syntax
[Visual Basic]
object.ClearTQ
[C#]
object.ClearTQ()
[C++]
object->ClearTQ()
Parameters
object
An object expression that evaluates to a PortController object.
Return Value
None
Remarks
None
Errors
Attempting to clear the transmit queue when the port is closed will cause PortController to throw a "Port is closed." exception.
Example
[Visual Basic]
myPortController.ClearTQ
[C#]
myPortController.ClearTQ();
[C++]
myPortController->ClearTQ();
See Also
BytesUsedTQ property | BytesUsedRQ property | ClearRQ method
|