Changes
To delete selected objects, <code>InvokeOnItemsCommand</code> with a KeyValueList containing <code>Key="Command"</code> and <code>Value="DeleteContentCommand"</code> as CommandParameter can be used.
==== Download and Checkout (UWP only) ====To perform the The Download and Checkout actions on selected objectscan be provided like the command for Downloading, just with an additional KeyValueParameter to set the <code>InvokeOnItemsCommandKey="CheckOut"</code> should be used in combination with two CommandParameters to "True" as CommandParameter. It is shown in the following example.:
<source lang = "xml">
<Button Command="{Binding InvokeOnItemsCommand}">
</source>
==== Checkout (UWP only) ====To checkout multiple objects, the <code>InvokeOnItemsCommand</code> with a KeyValueList containing <code>Key="Command"</code> and <code>Value="CheckOutContentCommand"</code> and a KeyValueList with <code>Key="SelectedItemsOnly"</code> set to <code>Value="True"</code> as CommandParameter can be used. Itcan be inspected in the following example:
<source lang = "xml">
<Button Command="{Binding InvokeOnItemsCommand}">
</source>
==== Release (UWP only) ====To checkout multiple objects, the <code>InvokeOnItemsCommand</code> with a KeyValueList containing <code>Key="Command"</code> and <code>Value="ReleaseContentCommand"</code> and a KeyValueList with <code>Key="SelectedItemsOnly"</code> set to <code>Value="True"</code> as CommandParameter can be used. Itcan be inspected in the following example:
<source lang = "xml">
<Button Command="{Binding InvokeOnItemsCommand}">
</source>
==== Revert local changes (UWP only) ====To revert locally executed changes on objects, the <code>InvokeOnItemsCommand</code> with a KeyValueList containing <code>Key="Command"</code> and <code>Value="RevertLocalChangesCommand"</code> as CommandParameter can should be used.
== Editing common Properties of selected items (UWP only) ==