Microsoft Graph · Schema
microsoft.graph.workbookRangeFormat
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.workbookRangeFormat",
"title": "microsoft.graph.workbookRangeFormat",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "workbookRangeFormat",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"columnWidth": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
],
"description": "The width of all columns within the range. If the column widths aren't uniform, null will be returned."
},
"horizontalAlignment": {
"type": "string",
"description": "The horizontal alignment for the specified object. The possible values are: General, Left, Center, Right, Fill, Justify, CenterAcrossSelection, Distributed.",
"nullable": true
},
"rowHeight": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
],
"description": "The height of all rows in the range. If the row heights aren't uniform null will be returned."
},
"verticalAlignment": {
"type": "string",
"description": "The vertical alignment for the specified object. The possible values are: Top, Center, Bottom, Justify, Distributed.",
"nullable": true
},
"wrapText": {
"type": "boolean",
"description": "Indicates whether Excel wraps the text in the object. A null value indicates that the entire range doesn't have a uniform wrap setting.",
"nullable": true
},
"borders": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.workbookRangeBorder"
},
"description": "Collection of border objects that apply to the overall range selected Read-only.",
"x-ms-navigationProperty": true
},
"fill": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.workbookRangeFill"
},
{
"type": "object",
"nullable": true
}
],
"description": "Returns the fill object defined on the overall range. Read-only.",
"x-ms-navigationProperty": true
},
"font": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.workbookRangeFont"
},
{
"type": "object",
"nullable": true
}
],
"description": "Returns the font object defined on the overall range selected Read-only.",
"x-ms-navigationProperty": true
},
"protection": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.workbookFormatProtection"
},
{
"type": "object",
"nullable": true
}
],
"description": "Returns the format protection object for a range. Read-only.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.workbookRangeFormat"
}