Microsoft Graph · Schema
microsoft.graph.workbookRangeFont
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.workbookRangeFont",
"title": "microsoft.graph.workbookRangeFont",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "workbookRangeFont",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"bold": {
"type": "boolean",
"description": "Inidicates whether the font is bold.",
"nullable": true
},
"color": {
"type": "string",
"description": "The HTML color code representation of the text color. For example, #FF0000 represents the color red.",
"nullable": true
},
"italic": {
"type": "boolean",
"description": "Inidicates whether the font is italic.",
"nullable": true
},
"name": {
"type": "string",
"description": "The font name. For example, 'Calibri'.",
"nullable": true
},
"size": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
],
"description": "The font size."
},
"underline": {
"type": "string",
"description": "The type of underlining applied to the font. The possible values are: None, Single, Double, SingleAccountant, DoubleAccountant.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.workbookRangeFont"
}