* Get the value * @this {!FieldModelWChar} * @returns {!object} Result value and its size
()
| 3363 | * @returns {!object} Result value and its size |
| 3364 | */ |
| 3365 | get () { |
| 3366 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 3367 | return { value: '\0', size: 0 } |
| 3368 | } |
| 3369 | |
| 3370 | return { value: this.readWChar(this.fbeOffset), size: this.fbeSize } |
| 3371 | } |
| 3372 | |
| 3373 | /** |
| 3374 | * Set the value |