FreeTextColumn
The FreeTextColumn object used in the Free Text Column function
TypeScript
export interface FreeTextColumn extendsExtends
Properties
| Property | Type | Description | Default |
|---|---|---|---|
| ColumnId | string | Id of Column | |
| DefaultValue | any | Initial value to use for each cell in the Column | |
| FreeTextColumnSettings | FreeTextColumnSettings | Additional optional properties for Column (e.g. filterable, resizable) | |
| FreeTextStoredValues | FreeTextStoredValue[] | Collection of Stored Values to aplly in the Column | |
| FriendlyName | string | Friendly Name to use to refer to Column; if unset ColumnId is used | |
| TextEditor | 'Inline' | 'Large' | Cell editor to use when editing a string Free Text Column | 'Inline' |
| IsReadOnly | boolean | Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full') |
Property Details
ColumnId
Id of Column
TypeScript
ColumnId: string;Property Value
string
DefaultValue
Initial value to use for each cell in the Column
TypeScript
DefaultValue?: any;Property Value
any
FreeTextColumnSettings
Additional optional properties for Column (e.g. filterable, resizable)
TypeScript
FreeTextColumnSettings: FreeTextColumnSettings;Property Value
FreeTextStoredValues
Collection of Stored Values to aplly in the Column
TypeScript
FreeTextStoredValues?: FreeTextStoredValue[];Property Value
FriendlyName
Friendly Name to use to refer to Column; if unset ColumnId is used
TypeScript
FriendlyName?: string;Property Value
string
TextEditor
Cell editor to use when editing a string Free Text Column
TypeScript
TextEditor?: 'Inline' | 'Large';Default Value
'Inline'
Property Value
'Inline' | 'Large'
IsReadOnly
Inherited from AdaptableObject
Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
TypeScript
IsReadOnly?: boolean;Property Value
boolean