Skip to content

Commit 10f419c

Browse files
committed
Doc: fix images links after downloading them
1 parent d2d338f commit 10f419c

File tree

130 files changed

+82
-82
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+82
-82
lines changed

Documentation/Methods/VP ADD SELECTION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In *rangeObj*, pass a range object of cells to add to the current selection.
2222

2323
You have cells currently selected:
2424

25-
![](../../assets/en/ViewPro/cmd_vpAddSelection1.PNG)
25+
![](../images/cmd_vpAddSelection1.PNG)
2626

2727
The following code will add cells to your selection:
2828

@@ -33,7 +33,7 @@ VP ADD SELECTION($currentSelection)
3333

3434
Result:
3535

36-
![](../../assets/en/ViewPro/cmd_vpAddSelection2.PNG)
36+
![](../images/cmd_vpAddSelection2.PNG)
3737

3838
## See also
3939

Documentation/Methods/VP ADD SHEET.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ In *name*, you can pass a name for the new sheet. The new name cannot contain th
2727

2828
The document currently has 3 sheets:
2929

30-
![vp-document-with-3-sheets](../../assets/en/ViewPro/vp-sheet-3.png)
30+
![vp-document-with-3-sheets](../images/vp-sheet-3.png)
3131

3232
To insert a sheet at the third position (index 2) and name it "March":
3333

3434
```4d
3535
VP ADD SHEET("ViewProArea";2;"March")
3636
```
3737

38-
![vp-add-sheet](../../assets/en/ViewPro/vp-add-sheet.png)
38+
![vp-add-sheet](../images/vp-add-sheet.png)
3939

4040
## See also
4141

Documentation/Methods/VP ADD SPAN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In *rangeObj*, pass a range object of cells. The cells in the range are joined t
2222

2323
To span the First quarter and Second quarter cells across the two cells beside them, and the South area cell across the two rows below it:
2424

25-
![initial-document](../../assets/en/ViewPro/vp-add-span.png)
25+
![initial-document](../images/vp-add-span.png)
2626

2727
```4d
2828
// First quarter range
@@ -37,7 +37,7 @@ To span the First quarter and Second quarter cells across the two cells beside t
3737
VP ADD SPAN(VP Combine ranges($q1;$q2;$south))
3838
```
3939

40-
![vp-add-span-result](../../assets/en/ViewPro/vp-add-span-2.png)
40+
![vp-add-span-result](../images/vp-add-span-2.png)
4141

4242
## See also
4343

Documentation/Methods/VP COLUMN AUTOFIT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In *rangeObj*, pass a range object containing a range of the columns whose size
1919

2020
The following columns are all the same size and don't display some of the text:
2121

22-
![](../../assets/en/ViewPro/cmd_vpColumnAutoFit1.PNG)
22+
![](../images/cmd_vpColumnAutoFit1.PNG)
2323

2424
Selecting the columns and running this code:
2525

@@ -29,7 +29,7 @@ Selecting the columns and running this code:
2929

3030
... resizes the columns to fit the size of the contents:
3131

32-
![](../../assets/en/ViewPro/cmd_vpColumnAutoFit2.PNG)
32+
![](../images/cmd_vpColumnAutoFit2.PNG)
3333

3434
## See also
3535

Documentation/Methods/VP CREATE TABLE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
The `VP CREATE TABLE` command <!-- REF #_method_.VP CREATE TABLE.Summary -->creates a table in the specified range<!-- END REF -->. You can create a table in a range of cells to make managing and analyzing a group of related data easier. A table typically contains related data in rows and columns, and takes advantage of a [data context](vp-set-data-context).
2020

21-
![](../../assets/en/ViewPro/vp-create-table.png)
21+
![](../images/vp-create-table.png)
2222

2323
In *rangeObj*, pass the cell range where the table will be created.
2424

@@ -89,7 +89,7 @@ VP CREATE TABLE(VP Cells("ViewProArea"; 1; 1; $options.tableColumns.length; 1);
8989

9090
Here's the result:
9191

92-
![](../../assets/en/ViewPro/vp-create-table.png)
92+
![](../images/vp-create-table.png)
9393

9494
## See also
9595

Documentation/Methods/VP Cell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ In the optional *sheet* parameter, you can indicate the index of the sheet where
3434

3535
You want to define a range object for the cell shown below (on the current spreadsheet):
3636

37-
![vp-cell](../../assets/en/ViewPro/cmd_vpCell.png)
37+
![vp-cell](../images/cmd_vpCell.png)
3838

3939
The code would be:
4040

Documentation/Methods/VP Cells.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In the optional *sheet* parameter, you can designate a specific spreadsheet wher
3737

3838
You want to define a range object for the following cells (on the current sheet):
3939

40-
![](../../assets/en/ViewPro/vp-cells.png)
40+
![](../images/vp-cells.png)
4141

4242
The code would be:
4343

Documentation/Methods/VP Column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In the optional *sheet* parameter, you can designate a specific spreadsheet wher
2929

3030
You want to define a range object for the column shown below (on the current spreadsheet):
3131

32-
![](../../assets/en/ViewPro/cmd_vpColumn.PNG)
32+
![](../images/cmd_vpColumn.PNG)
3333

3434
The code would be:
3535

Documentation/Methods/VP DELETE COLUMNS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In *rangeObj*, pass an object containing a range of columns to remove. If the pa
2424

2525
To delete columns selected by the user (in the image below columns B, C, and D):
2626

27-
![](../../assets/en/ViewPro/cmd_vpDeleteColumns.PNG)
27+
![](../images/cmd_vpDeleteColumns.PNG)
2828

2929
use the following code:
3030

Documentation/Methods/VP DELETE ROWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In *rangeObj*, pass an object containing a range of rows to remove. If the pass
2424

2525
To delete rows selected by the user (in the image below rows 1, 2, and 3):
2626

27-
![](../../assets/en/ViewPro/cmd_vpDeleteRows.PNG)
27+
![](../images/cmd_vpDeleteRows.PNG)
2828

2929
use the following code:
3030

0 commit comments

Comments
 (0)