Interface StringCellEditorProps

interface StringCellEditorProps {
    containerBounds?: Bounds;
    defaultTextStyle?: TextStyle;
    disabled?: boolean;
    editState?: EditState<string, string>;
    textProperties?: PaintableText;
    useRichStyling?: boolean;
    zoom?: number;
    onCancelEdit?(): void;
    onChangeEdit?(editState): void;
    onDoneEdit?(): void;
    onNavigate?(direction, select?, contentful?): void;
    onNavigateSelection?(direction): void;
    onStartEdit?(editState): void;
    onSubmitEdit?(editState): void;
    setNaturalSize?(size): void;
}

Hierarchy (view full)

Properties

containerBounds?: Bounds

Position of editor, x, y, width and height

defaultTextStyle?: TextStyle

Styling for the textfield

disabled?: boolean
editState?: EditState<string, string>

editState of the cell

textProperties?: PaintableText
useRichStyling?: boolean

Override defaultText styling with cellStyling?

zoom?: number

Methods