Skip to content

Commit 5fbb85f

Browse files
947645-AutofillExample
1 parent aca6feb commit 5fbb85f

File tree

2 files changed

+2
-2
lines changed
  • Worksheet Features/Fill Series/.NET

2 files changed

+2
-2
lines changed

Worksheet Features/Fill Series/.NET/DateTimeFillSeries/DateTimeFillSeries/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static void Main(string[] args)
1919
//Define the range
2020
IRange range = worksheet["A1:A50"];
2121

22-
//Fill series using the years option
22+
//Fill series using the years option, step value and stop value
2323
range.FillSeries(ExcelSeriesBy.Columns, ExcelFillSeries.Years, 2, new DateTime(2100, 1, 1));
2424

2525
//Saving the workbook

Worksheet Features/Fill Series/.NET/NumberFillSeries/NumberFillSeries/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static void Main(string[] args)
1919
//Define the range
2020
IRange range = worksheet["A1:A100"];
2121

22-
//Fill series using the linear option
22+
//Fill series using the linear option, step value and stop value
2323
range.FillSeries(ExcelSeriesBy.Columns, ExcelFillSeries.Linear, 5, 1000);
2424

2525
//Saving the workbook

0 commit comments

Comments
 (0)