| An oBuffer Object maintains an array of bytes. Access to the array of bytes can be done as a string of characters or by specifying one byte within the array with a Location property. The value that is read or written by using the Value property will be the character that the Location property points. When accessing the array as a string of characters, The VString property is used to read or write a series of characters and the RTCString property is used to read or write a series of characters represented as an Real-Time-Clock string When reading from the VString property, each character within the buffer will be sequentially read each time the VString property is accessed. When writing to the VString property, the characters will be written to the buffer starting at the first character position. When writing as a string of characters, each character written will be sequentially stored starting at position 1. When accessing the array by specifying a single byte, the Value property is used to read or write a specified byte within the array and the location of the byte that gets read from or written to is specified by the Location property. When reading from the RTCString property each character written will be sequentially stored starting at position 1 with a colon between pairs of digits. |