BytesUsedTQ Property
Returns a long integer indicating how many bytes are in the transmit queue.
Syntax
Visual Basic
object.BytesUsedTQ
Visual C++
object.GetBytesUsedTQ()
Delphi
object.BytesUsedTQ
| Part
| Description |
| object |
An object expression that evaluates to a PortController object. |
Example
Visual Basic
Dim bytesUsed As Long
bytesUsed = myPortController.BytesUsedTQ
Visual C++
long lBytesUsed = m_myPortController.GetBytesUsedTQ();
Delphi
var bytesUsed: Integer; // declare variable in the proper place
bytesUsed := myPortController.BytesUsedTQ;
Remarks
This property is read-only.
Returns
A long integer representing the number of bytes in the transmit queue.
Errors
None
See Also
BytesUsedRQ, ClearRQ(), ClearTQ()
|