[]
Represents the type of drag fill direction.
example
var start = new GC.Spread.Sheets.Range(0, 2, 1, 1);
activeSheet.setValue(0, 2, 5);
var r3 = new GC.Spread.Sheets.Range(0, 2, 4, 1);
activeSheet.fillAuto(start, r3, {fillType: GC.Spread.Sheets.Fill.FillType.auto, fillDirection:GC.Spread.Sheets.Fill.FillDirection.down, series: GC.Spread.Sheets.Fill.FillSeries.column});
• down = 3
Fills from the top to the bottom.
• left = 0
Fills from the right to the left.
• right = 1
Fills from the left to the right.
• up = 2
Fills from the bottom to the top.