#Add-SPOWebPartToWikiPage Adds a webpart to a wiki page in a specified table row and column ##Syntax
Add-SPOWebPartToWikiPage -Path <String> -ServerRelativePageUrl <String> -Row <Int32> -Column <Int32> [-AddSpace [<SwitchParameter>]] [-Web <WebPipeBind>]Add-SPOWebPartToWikiPage -Xml <String> -ServerRelativePageUrl <String> -Row <Int32> -Column <Int32> [-AddSpace [<SwitchParameter>]] [-Web <WebPipeBind>]##Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| AddSpace | SwitchParameter | False | |
| Column | Int32 | True | |
| Path | String | True | |
| Row | Int32 | True | |
| ServerRelativePageUrl | String | True | Full server relative url of the webpart page, e.g. /sites/demo/sitepages/home.aspx |
| Web | WebPipeBind | False | The web to apply the command to. Omit this parameter to use the current web. |
| Xml | String | True | |
| ##Examples |
###Example 1
PS:> Add-SPOWebPartToWikiPage -ServerRelativePageUrl "/sites/demo/sitepages/home.aspx" -Path "c:\myfiles\listview.webpart" -Row 1 -Column 1This will add the webpart as defined by the XML in the listview.webpart file to the specified page in the first row and the first column of the HTML table present on the page
###Example 2
PS:> Add-SPOWebPartToWikiPage -ServerRelativePageUrl "/sites/demo/sitepages/home.aspx" -XML $webpart -Row 1 -Column 1This will add the webpart as defined by the XML in the $webpart variable to the specified page in the first row and the first column of the HTML table present on the page