set_page_margins
Adjust page margins in a Word document by specifying top, right, bottom, and left values. Simplify document formatting for precise layout control.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bottom | No | ||
filePath | Yes | ||
left | No | ||
right | No | ||
top | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bottom": {
"type": "number"
},
"filePath": {
"type": "string"
},
"left": {
"type": "number"
},
"right": {
"type": "number"
},
"top": {
"type": "number"
}
},
"required": [
"filePath"
],
"type": "object"
}