|
PortController.NET
BytesUsedTQ Property
Returns a long integer indicating how many bytes are in the transmit queue.
Syntax
[Visual Basic]
object.BytesUsedTQ
[C#]
object.BytesUsedTQ
[C++]
object->BytesUsedTQ
Parameters
object
An object expression that evaluates to a PortController object.
Return Value
A long integer representing the number of bytes in the transmit queue.
Remarks
This property is read-only.
Errors
None
Example
[Visual Basic]
Dim bytesUsed As Int32
bytesUsed = myPortController.BytesUsedTQ
[C#]
Int32 BytesUsed = myPortController.BytesUsedTQ;
[C++]
Int32 BytesUsed = myPortController->BytesUsedTQ;
See Also
BytesUsedRQ property | ClearTQ method | ClearRQ method
|