1# OH_Drawing_FontConfigInfo 2 3 4## Overview 5 6The OH_Drawing_FontConfigInfo struct describes the information about a system font configuration. 7 8**Since**: 12 9 10**Related module**: [Drawing](_drawing.md) 11 12**Header file**: [drawing_text_typography.h](drawing__text__typography_8h.md) 13 14## Summary 15 16 17### Member Variables 18 19| Name| Description| 20| -------- | -------- | 21| size_t [fontDirSize](#fontdirsize) | Number of system font file paths.| 22| size_t [fontGenericInfoSize](#fontgenericinfosize) | Number of generic fonts.| 23| size_t [fallbackGroupSize](#fallbackgroupsize) | Number of font fallbacks.| 24| char \*\* [fontDirSet](#fontdirset) | Double pointer to the system font file paths.| 25| [OH_Drawing_FontGenericInfo](_o_h___drawing___font_generic_info.md) \* [fontGenericInfoSet](#fontgenericinfoset) | Pointer to a set of generic fonts.| 26| [OH_Drawing_FontFallbackGroup](_o_h___drawing___font_fallback_group.md) \* [fallbackGroupSet](#fallbackgroupset) | Pointer to a set of font fallbacks.| 27 28 29## Member Variable Description 30 31 32### fallbackGroupSet 33 34``` 35OH_Drawing_FontFallbackGroup* OH_Drawing_FontConfigInfo::fallbackGroupSet 36``` 37 38**Description** 39 40Pointer to a set of font fallbacks. 41 42 43### fallbackGroupSize 44 45``` 46size_t OH_Drawing_FontConfigInfo::fallbackGroupSize 47``` 48 49**Description** 50 51Number of font fallbacks. 52 53 54### fontDirSet 55 56``` 57char** OH_Drawing_FontConfigInfo::fontDirSet 58``` 59 60**Description** 61 62Double pointer to the system font file paths. 63 64 65### fontDirSize 66 67``` 68size_t OH_Drawing_FontConfigInfo::fontDirSize 69``` 70 71**Description** 72 73Number of system font file paths. 74 75 76### fontGenericInfoSet 77 78``` 79OH_Drawing_FontGenericInfo* OH_Drawing_FontConfigInfo::fontGenericInfoSet 80``` 81 82**Description** 83 84Pointer to a set of generic fonts. 85 86 87### fontGenericInfoSize 88 89``` 90size_t OH_Drawing_FontConfigInfo::fontGenericInfoSize 91``` 92 93**Description** 94 95Number of generic font sets. 96