Microsoft Graph · Schema
printMargin
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| bottom | number | The margin in microns from the bottom edge. |
| left | number | The margin in microns from the left edge. |
| right | number | The margin in microns from the right edge. |
| top | number | The margin in microns from the top edge. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.printMargin",
"title": "printMargin",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"bottom": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The margin in microns from the bottom edge.",
"format": "int32",
"nullable": true
},
"left": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The margin in microns from the left edge.",
"format": "int32",
"nullable": true
},
"right": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The margin in microns from the right edge.",
"format": "int32",
"nullable": true
},
"top": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The margin in microns from the top edge.",
"format": "int32",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}