{{UnderConstructionStart}}
With the ''BranchDownloadCommand '' it is possible to manually download a branchmanually. * {{Version/WinXSince|4.1}} {{Version/XamarinSince|4.1}} CheckOut CommandParameter (optional, defaults to false): Setting CheckOut to true provides the possibility to check out all downloaded content afterwards. Further information see in [[Exclusive_Access_Content_(Client)]].* {{Version/WinXSince|4.8}} {{Version/XamarinSince|4.8}} SkipDialog CommandParameter (optional, defaults to false): Usually before downloading a branch a dialog is raised for the user to confirm or cancel the action. Setting SkipDialog to true provides the possibility to skip this dialog. <br/><tabs><tab name="UWP"><source lang = "xml"> <Button xmlns:example="using:UBIK.WinX.Controls" Command="{Binding BranchDownloadCommand}"> <Button.CommandParameter> <example:KeyValueList> <example:KeyValueParameter Key="CheckOut" Value="False" /> </example:KeyValueList> </Button.CommandParameter> </Button></source></tab><tab name="Xamarin"><source lang = "xml"> <Button xmlns:example="using:clr-namespace:UBIK.CPL.Classes;assembly=UBIK.CPL" Command="{Binding BranchDownloadCommand}"> <Button.CommandParameter> <example:KeyValueList> <example:KeyValueParameter Key="CheckOut" Value="False" /> </example:KeyValueList> </Button.CommandParameter> </Button></source></tab></tabs>
{{UnderConstructionEnd}}