Removes the specified rendering parameter from the rendering.
Remove-RenderingParameter -Instance <RenderingDefinition> [-Name <String[]>]
Removes the specified rendering parameter from the rendering.
© 2010-2019 Adam Najmanowicz, Michael West. All rights reserved. Sitecore PowerShell Extensions
Rendering definition containing the rendering parameters.
Aliases | |
---|---|
Required? | true |
Position? | named |
Default Value | |
Accept Pipeline Input? | false |
Accept Wildcard Characters? | false |
The names (or keys) identifying specific rendering parameters.
Aliases | |
---|---|
Required? | false |
Position? | named |
Default Value | |
Accept Pipeline Input? | false |
Accept Wildcard Characters? | false |
The input type is the type of the objects that you can pipe to the cmdlet.
- Sitecore.Layouts.RenderingDefinition
The output type is the type of the objects that the cmdlet emits.
- Sitecore.Layouts.RenderingDefinition
Help Author: Adam Najmanowicz, Michael West
The following removes the specified rendering parameter and updates the item.
$item = Get-Item -Path "master" -ID "{110D559F-DEA5-42EA-9C1C-8A5DF7E70EF9}"
Get-Rendering -Item $item -FinalLayout |
Remove-RenderingParameter -Name"SampleKey2" |
Set-Rendering -Item $item -FinalLayout