1# Print_PageSize 2 3 4## Overview 5 6Defines the page size and related information. 7 8**Since**: 12 9 10**Related module**: [OH_Print](_o_h___print.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| char \* [id](#id) | Defines the page ID. | 21| char \* [name](#name) | Defines the page name. | 22| uint32_t [width](#width) | Defines the page width. | 23| uint32_t [height](#height) | Defines the page height. | 24 25 26## Member Variable Description 27 28 29### height 30 31``` 32uint32_t Print_PageSize::height 33``` 34**Description** 35Defines the page height. 36 37 38### id 39 40``` 41char* Print_PageSize::id 42``` 43**Description** 44Defines the page ID. 45 46 47### name 48 49``` 50char* Print_PageSize::name 51``` 52**Description** 53Defines the page name. 54 55 56### width 57 58``` 59uint32_t Print_PageSize::width 60``` 61**Description** 62Defines the page width. 63