[]
        
(Showing Draft Content)

GC.Spread.Sheets.Fill.FillDirection

Enumeration: FillDirection

Sheets.Fill.FillDirection

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});

Table of contents

Enumeration members

Enumeration members

down

down = 3

Fills from the top to the bottom.


left

left = 0

Fills from the right to the left.


right = 1

Fills from the left to the right.


up

up = 2

Fills from the bottom to the top.