1# OH_Drawing_String 2 3 4## Overview 5 6The OH_Drawing_String struct describes a string of characters encoded in UTF-16. 7 8**Since**: 14 9 10**Related module**: [Drawing](_drawing.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| uint8_t \* [strData](#strdata) | Pointer to a byte array that stores characters in the UTF-16 encoding format. | 21| uint32_t [strLen](#strlen) | Actual length of the string that **strData** points to, in bytes. | 22 23 24## Member Variable Description 25 26 27### strData 28 29``` 30uint8_t* OH_Drawing_String::strData 31``` 32**Description** 33 34Pointer to a byte array that stores characters in the UTF-16 encoding format. 35 36 37### strLen 38 39``` 40uint32_t OH_Drawing_String::strLen 41``` 42**Description** 43 44Actual length of the string that **strData** points to, in bytes. 45