[]
Represents the type of drag fill.
example
//This example uses the AutoFillType enumeration.
console.log(spread.options.defaultDragFillType); // equals to GC.Spread.Sheets.Fill.AutoFillType.auto
spread.options.defaultDragFillType = GC.Spread.Sheets.Fill.AutoFillType.copyCells;
• auto = 5
Automatically fills cells.
• clearValues = 4
Clears cell values.
• copyCells = 0
Fills cells with all data objects, including values, formatting, and formulas.
• fillFormattingOnly = 2
Fills cells only with formatting.
• fillSeries = 1
Fills cells with series.
• fillWithoutFormatting = 3
Fills cells with values and not formatting.