Dart Tcp, Daemon, Udp Controls
SizeHigh Property
Description
Size of the stream in bytes. Used only when the size is 2^31 (2147483648).
Property type
Read-only property
Syntax
Visual Basic
Public Property SizeHigh As Long
Remarks

This property is not an actual count of bytes, but a count of the number of times the size of the file has exceeded 2^31. For example, the first time a file is written to, this property will be 0. If the Size property exceeds 2^31, the Size property will go back to 0 and the SizeHigh property will be incremented to 1. If Size exceeds 2^31 again, it is again reset to 0 and SizeHigh is incremented to 2. So, to find the actual file size, use:

(SizeHigh * 2147483648) + Size

See Also

DartStream Object  | DartStream Members


Documentation Version 1.9.3.0
© 2020 Dart Communications. All Rights Reserved.
Send comments on this topic