[office-js, office-js-preview] Correcting the Range.autofill description (#38010)

* Correcting the Range.autofill description

* Fix spacing
This commit is contained in:
Alex Jerabek
2019-09-03 13:51:09 -07:00
committed by Ron Buckton
parent 6f4b17c37b
commit 9b8d3d7c9d
2 changed files with 24 additions and 8 deletions
+12 -4
View File
@@ -21662,8 +21662,12 @@ declare namespace Excel {
set(properties: Excel.Range): void;
/**
*
* Fills range from the current range to the destination range.
The destination range must extend the source either horizontally or vertically. Discontiguous ranges are not supported.
* Fills range from the current range to the destination range using the specified AutoFill logic.
* The destination range can be null, or can extend the source either horizontally or vertically.
* If the destination range is null, data is filled out based on the surrounding cells (which is the behavior when double-clicking the UIs range fill handle).
* Discontiguous ranges are not supported.
*
* For more information, read {@link https://support.office.com/article/video-use-autofill-and-flash-fill-2e79a709-c814-4b27-8bc2-c4dc84d49464 | Use AutoFill and Flash Fill}.
*
* [Api set: ExcelApi 1.9]
*
@@ -21673,8 +21677,12 @@ declare namespace Excel {
autoFill(destinationRange: Range | string, autoFillType?: Excel.AutoFillType): void;
/**
*
* Fills range from the current range to the destination range.
The destination range must extend the source either horizontally or vertically. Discontiguous ranges are not supported.
* Fills range from the current range to the destination range using the specified AutoFill logic.
* The destination range can be null, or can extend the source either horizontally or vertically.
* If the destination range is null, data is filled out based on the surrounding cells (which is the behavior when double-clicking the UIs range fill handle).
* Discontiguous ranges are not supported.
*
* For more information, read {@link https://support.office.com/article/video-use-autofill-and-flash-fill-2e79a709-c814-4b27-8bc2-c4dc84d49464 | Use AutoFill and Flash Fill}.
*
* [Api set: ExcelApi 1.9]
*
+12 -4
View File
@@ -18876,8 +18876,12 @@ declare namespace Excel {
set(properties: Excel.Range): void;
/**
*
* Fills range from the current range to the destination range.
The destination range must extend the source either horizontally or vertically. Discontiguous ranges are not supported.
* Fills range from the current range to the destination range using the specified AutoFill logic.
* The destination range can be null, or can extend the source either horizontally or vertically.
* If the destination range is null, data is filled out based on the surrounding cells (which is the behavior when double-clicking the UIs range fill handle).
* Discontiguous ranges are not supported.
*
* For more information, read {@link https://support.office.com/article/video-use-autofill-and-flash-fill-2e79a709-c814-4b27-8bc2-c4dc84d49464 | Use AutoFill and Flash Fill}.
*
* [Api set: ExcelApi 1.9]
*
@@ -18887,8 +18891,12 @@ declare namespace Excel {
autoFill(destinationRange: Range | string, autoFillType?: Excel.AutoFillType): void;
/**
*
* Fills range from the current range to the destination range.
The destination range must extend the source either horizontally or vertically. Discontiguous ranges are not supported.
* Fills range from the current range to the destination range using the specified AutoFill logic.
* The destination range can be null, or can extend the source either horizontally or vertically.
* If the destination range is null, data is filled out based on the surrounding cells (which is the behavior when double-clicking the UIs range fill handle).
* Discontiguous ranges are not supported.
*
* For more information, read {@link https://support.office.com/article/video-use-autofill-and-flash-fill-2e79a709-c814-4b27-8bc2-c4dc84d49464 | Use AutoFill and Flash Fill}.
*
* [Api set: ExcelApi 1.9]
*