GcSpread.Sheets Namespace : FillDirection Enumeration |
Member | Description |
---|---|
Down | Fills from the top to the bottom. |
Left | Fills from the right to the left. |
Right | Fills from the left to the right. |
Up | Fills from the bottom to the top. |
var start = new GcSpread.Sheets.Range(0, 2, 1, 1); activeSheet.setValue(0, 2, 5); var r3 = new GcSpread.Sheets.Range(0, 2, 4, 1); activeSheet.fillAutobyDirection(start, r3, GcSpread.Sheets.FillDirection.Down);
activeSheet.setValue(0, 0, 5); var start = new GcSpread.Sheets.Range(0, 0, 1, 1); var r3 = new GcSpread.Sheets.Range(0, 0, 4, 1); activeSheet.fillAuto(start,r3, GcSpread.Sheets.FillSeries.Column, GcSpread.Sheets.FillDirection.down);
Object
GcSpread.Sheets.FillDirection