1# OH_Drawing_FontFallbackGroup 2 3 4## Overview 5 6The OH_Drawing_FontFallbackInfo struct describes the information about a font fallback group. 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 \* [groupName](#groupname) | Pointer to the name of the group corresponding to the font fallback group. If null is passed in, all fonts in the font fallback group can be used. | 21| size_t [fallbackInfoSize](#fallbackinfosize) | Number of font fallbacks. | 22| [OH_Drawing_FontFallbackInfo](_o_h___drawing___font_fallback_info.md) \* [fallbackInfoSet](#fallbackinfoset) | Pointer to the set of font fallbacks. | 23 24 25## Member Variable Description 26 27 28### fallbackInfoSet 29 30``` 31OH_Drawing_FontFallbackInfo* OH_Drawing_FontFallbackGroup::fallbackInfoSet 32``` 33**Description** 34 35Pointer to the set of font fallbacks. 36 37 38### fallbackInfoSize 39 40``` 41size_t OH_Drawing_FontFallbackGroup::fallbackInfoSize 42``` 43**Description** 44 45Number of font fallbacks. 46 47 48### groupName 49 50``` 51char* OH_Drawing_FontFallbackGroup::groupName 52``` 53**Description** 54 55Pointer to the name of the group corresponding to the font fallback group. If null is passed in, all fonts in the font fallback group can be used. 56