1# OH_Drawing_FontAliasInfo 2 3 4## Overview 5 6The OH_Drawing_FontAliasInfo struct describes the information about a font alias. 7 8**Since**: 12 9 10**Related module**: [Drawing](_drawing.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| char \* [familyName](#familyname) | Pointer to the name of a font family. | 21| int [weight](#weight) | Font weight. If the value is greater than 0, only the fonts with the specified weight in the font family are contained. If the value is 0, all the fonts in the font family are contained. | 22 23 24## Member Variable Description 25 26 27### familyName 28 29``` 30char* OH_Drawing_FontAliasInfo::familyName 31``` 32**Description** 33 34Pointer to the name of a font family. 35 36 37### weight 38 39``` 40int OH_Drawing_FontAliasInfo::weight 41``` 42**Description** 43 44Font weight. If the value is greater than 0, only the fonts with the specified weight in the font family are contained. If the value is 0, all the fonts in the font family are contained. 45