Spread.Sheets Documentation
FillSeries Enumeration
Represents the fill series for drag fill.
Members
MemberDescription
columnFills the column data.
rowFills the row data.
Example
This example automatically fills the data in an area of the sheet.
activeSheet.setValue(0, 0, 5);
var start = new GC.Spread.Sheets.Range(0, 0, 1, 1);
var r3 = new GC.Spread.Sheets.Range(0, 0, 4, 1);
activeSheet.fillAuto(start,r3, {fillType:GC.Spread.Sheets.Fill.FillType.auto, series:GC.Spread.Sheets.Fill.FillSeries.column, fillDirection:GC.Spread.Sheets.Fill.FillDirection.down});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Fill.FillSeries

See Also

Reference

GC.Spread.Sheets.Fill Namespace

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.