[]
        
(Showing Draft Content)

GC.Spread.Sheets.CellTypes.EditorType

Enumeration: EditorType

Sheets.CellTypes.EditorType

Represents the editor type of text cell type.

example

//This example shows how to change the editor of text cell type to textarea.
var tempStyle = new GC.Spread.Sheets.Style();
tempStyle.cellType = new GC.Spread.Sheets.CellTypes.Text(GC.Spread.Sheets.CellTypes.EditorType.textarea);
activeSheet.setDefaultStyle(tempStyle);

Table of contents

Enumeration members

Enumeration members

editableDiv

editableDiv = 1

Use editorable div element as the editor of text cell type.


textarea

textarea = 0

Use textarea element as the editor of text cell type.