create_custom_style
Define and apply custom styles in Microsoft Word documents by specifying font, size, bold, italic, and color settings. Enhances document formatting and consistency for professional results.
Instructions
Create a custom style in the document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_style | No | ||
bold | No | ||
color | No | ||
filename | Yes | ||
font_name | No | ||
font_size | No | ||
italic | No | ||
style_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"base_style": {
"default": null,
"title": "Base Style",
"type": "string"
},
"bold": {
"default": null,
"title": "Bold",
"type": "boolean"
},
"color": {
"default": null,
"title": "Color",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
},
"font_name": {
"default": null,
"title": "Font Name",
"type": "string"
},
"font_size": {
"default": null,
"title": "Font Size",
"type": "integer"
},
"italic": {
"default": null,
"title": "Italic",
"type": "boolean"
},
"style_name": {
"title": "Style Name",
"type": "string"
}
},
"required": [
"filename",
"style_name"
],
"type": "object"
}