TextColumn resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
The textColumn on a columnDefinition resource indicates that the column's values are text.
JSON representation
Here is a JSON representation of a textColumn resource.
{
"allowMultipleLines": true,
"appendChangesToExistingText": false,
"linesForEditing": 6,
"maxLength": 300,
"textType": "plain | richText"
}
Properties
Property | Type | Description |
---|---|---|
allowMultipleLines | string | Whether to allow multiple lines of text. |
appendChangesToExistingText | string | Whether updates to this column should replace existing text, or append to it. |
linesForEditing | int | The size of the text box. |
maxLength | int | The maximum number of characters for the value. |
textType | string | The type of text being stored. Must be one of plain or richText |