Skip to content

Commit af42b5e

Browse files
authored
Merge pull request #154 from OfficeDev/lindalu-fix-broken-links
[admin] fix broken links
2 parents 14c806b + 992f001 commit af42b5e

24 files changed

+30
-30
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Open XML documentation
22

3-
This repo is the source markdown for documentation published at /office/open-xml/open-xml-sdk.md.
3+
This repo is the source markdown for documentation published at /office/open-xml/open-xml-sdk.
44

55
## Contributing
66

docs/how-to-add-custom-ui-to-a-spreadsheet-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,6 @@ The following is the complete **AddCustomUI** code sample in C\# and Visual Basi
253253

254254
## See also
255255

256-
- [Open XML SDK 2.5 class library reference](/dotnet/api/overview/openxml/)
256+
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)
257257
- [Ribbon Designer](https://msdn.microsoft.com/library/26617206-f4da-416f-a18a-d817b2d4872d(Office.15).aspx)
258258
- [Walkthrough: Creating a Custom Tab by Using the Ribbon Designer](https://msdn.microsoft.com/library/312865e6-950f-46ab-88de-fe7eb8036bfe(Office.15).aspx)

docs/how-to-calculate-the-sum-of-a-range-of-cells-in-a-spreadsheet-document.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ The code inserts a new cell for the result into the worksheet by calling the **I
241241
End Sub
242242
```
243243
To get the row index the code passes a parameter that represents the name of the cell, and creates a new regular expression to match the row
244-
index portion of the cell name. For more information about regular expressions, see [Regular Expression Language Elements](/dotnet/standard/base-types/regular-expression-language-quick-reference.md). It gets the row index by calling the **[Regex.Match](https://msdn2.microsoft.com/library/3zy662f6)** method, and then returns the row index.
244+
index portion of the cell name. For more information about regular expressions, see [Regular Expression Language Elements](/dotnet/standard/base-types/regular-expression-language-quick-reference). It gets the row index by calling the **[Regex.Match](https://msdn2.microsoft.com/library/3zy662f6)** method, and then returns the row index.
245245

246246
```csharp
247247
// Given a cell name, parses the specified cell to get the row index.
@@ -266,7 +266,7 @@ index portion of the cell name. For more information about regular expressions,
266266
End Function
267267
```
268268

269-
The code then gets the column name by passing a parameter that represents the name of the cell, and creates a new regular expression to match the column name portion of the cell name. This regular expression matches any combination of uppercase or lowercase letters. It gets the column name by calling the **[Regex.Match](/dotnet/api/system.text.regularexpressions.regex.match.md)** method, and then returns the column name.
269+
The code then gets the column name by passing a parameter that represents the name of the cell, and creates a new regular expression to match the column name portion of the cell name. This regular expression matches any combination of uppercase or lowercase letters. It gets the column name by calling the **[Regex.Match](/dotnet/api/system.text.regularexpressions.regex.match)** method, and then returns the column name.
270270

271271
```csharp
272272
// Given a cell name, parses the specified cell to get the column name.
@@ -325,7 +325,7 @@ To compare two columns the code passes in two parameters that represent the colu
325325
End Function
326326
```
327327

328-
To insert a **SharedStringItem**, the code passes in a parameter that represents the text to insert into the cell and a parameter that represents the **SharedStringTablePart** object for the spreadsheet. If the **ShareStringTablePart** object does not contain a **[SharedStringTable](https://msdn.microsoft.com/library/office/documentformat.openxml.spreadsheet.sharedstringtable.aspx)** object then it creates one. If the text already exists in the **ShareStringTable** object, then it returns the index for the **[SharedStringItem](/dotnet/api/documentformat.openxml.spreadsheet.sharedstringitem.md)** object that represents the text. If the text does not exist, create a new **SharedStringItem** object that represents the text. It then returns the index for the **SharedStringItem** object that represents the text.
328+
To insert a **SharedStringItem**, the code passes in a parameter that represents the text to insert into the cell and a parameter that represents the **SharedStringTablePart** object for the spreadsheet. If the **ShareStringTablePart** object does not contain a **[SharedStringTable](https://msdn.microsoft.com/library/office/documentformat.openxml.spreadsheet.sharedstringtable.aspx)** object then it creates one. If the text already exists in the **ShareStringTable** object, then it returns the index for the **[SharedStringItem](/dotnet/api/documentformat.openxml.spreadsheet.sharedstringitem)** object that represents the text. If the text does not exist, create a new **SharedStringItem** object that represents the text. It then returns the index for the **SharedStringItem** object that represents the text.
329329

330330
```csharp
331331
// Given text and a SharedStringTablePart, creates a SharedStringItem with the specified text
@@ -385,7 +385,7 @@ To insert a **SharedStringItem**, the code passes in a parameter that represents
385385
End Function
386386
```
387387

388-
The final step is to insert a cell into the worksheet. The code does that by passing in parameters that represent the name of the column and the number of the row of the cell, and a parameter that represents the worksheet that contains the cell. If the specified row does not exist, it creates the row and append it to the worksheet. If the specified column exists, it finds the cell that matches the row in that column and returns the cell. If the specified column does not exist, it creates the column and inserts it into the worksheet. It then determines where to insert the new cell in the column by iterating through the row elements to find the cell that comes directly after the specified row, in sequential order. It saves this row in the **refCell** variable. It inserts the new cell before the cell referenced by **refCell** using the **[InsertBefore](/dotnet/api/documentformat.openxml.openxmlcompositeelement.insertbefore.md)** method. It then returns the new **Cell** object.
388+
The final step is to insert a cell into the worksheet. The code does that by passing in parameters that represent the name of the column and the number of the row of the cell, and a parameter that represents the worksheet that contains the cell. If the specified row does not exist, it creates the row and append it to the worksheet. If the specified column exists, it finds the cell that matches the row in that column and returns the cell. If the specified column does not exist, it creates the column and inserts it into the worksheet. It then determines where to insert the new cell in the column by iterating through the row elements to find the cell that comes directly after the specified row, in sequential order. It saves this row in the **refCell** variable. It inserts the new cell before the cell referenced by **refCell** using the **[InsertBefore](/dotnet/api/documentformat.openxml.openxmlcompositeelement.insertbefore)** method. It then returns the new **Cell** object.
389389

390390
```csharp
391391
// Given a column name, a row index, and a WorksheetPart, inserts a cell into the worksheet.
@@ -821,8 +821,8 @@ The following is the complete sample code in both C\# and Visual Basic.
821821

822822
## See also
823823

824-
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk.md)
824+
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)
825825
- [Language-Integrated Query (LINQ) (C#)](/dotnet/csharp/programming-guide/concepts/linq/)
826826
- [Language-Integrated Query (LINQ) (Visual Basic)](/dotnet/visual-basic/programming-guide/concepts/linq/)
827-
- [Lambda Expressions (C#)](/dotnet/csharp/language-reference/operators/lambda-expressions.md)
828-
- [Lambda Expressions (Visual Basic)](/dotnet/visual-basic/programming-guide/language-features/procedures/lambda-expressions.md)
827+
- [Lambda Expressions (C#)](/dotnet/csharp/language-reference/operators/lambda-expressions)
828+
- [Lambda Expressions (Visual Basic)](/dotnet/visual-basic/programming-guide/language-features/procedures/lambda-expressions)

docs/how-to-create-a-spreadsheet-document-by-providing-a-file-name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,4 +236,4 @@ Following is the complete sample code in both C\# and Visual Basic.
236236
## See also
237237

238238

239-
- [Open XML SDK 2.5 class library reference](/dotnet/api/overview/openxml/)
239+
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)

docs/how-to-create-a-word-processing-document-by-providing-a-file-name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,4 +223,4 @@ Following is the complete code example in both C\# and Visual Basic.
223223
## See also
224224

225225

226-
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk.md)
226+
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)

docs/how-to-delete-all-the-comments-by-an-author-from-all-the-slides-in-a-presentatio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,4 +443,4 @@ The following is the complete sample code in both C\# and Visual Basic.
443443

444444

445445

446-
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk.md)
446+
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)

docs/how-to-get-a-column-heading-in-a-spreadsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ Following is the complete sample code in both C\# and Visual Basic.
410410

411411

412412

413-
[Open XML SDK 2.5 class library reference](/dotnet/api/overview/openxml/)
413+
[Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)
414414

415415
[Language-Integrated Query (LINQ)](https://msdn.microsoft.com/library/bb397926.aspx)
416416

docs/how-to-insert-a-comment-into-a-word-processing-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ Following is the complete sample code in both C\# and Visual Basic.
364364
## See also
365365

366366

367-
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk.md)
367+
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)
368368

369369
[Language-Integrated Query (LINQ)](https://msdn.microsoft.com/library/bb397926.aspx)
370370

docs/how-to-insert-a-new-slide-into-a-presentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,4 +751,4 @@ The following is the complete sample code in both C\# and Visual Basic.
751751

752752

753753

754-
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk.md)
754+
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)

docs/how-to-insert-a-new-worksheet-into-a-spreadsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Following is the complete sample code in both C\# and Visual Basic.
296296
## See also
297297

298298

299-
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk.md)
299+
- [Open XML SDK 2.5 class library reference](/office/open-xml/open-xml-sdk)
300300

301301
[Language-Integrated Query (LINQ)](https://msdn.microsoft.com/library/bb397926.aspx)
302302

0 commit comments

Comments
 (0)