Canguro.Commands.Model.EditCmd.Run C# (CSharp) Method

Run() public method

Executes the command. Opens the properties window to edit the selected Item.
public Run ( Canguro services ) : void
services Canguro CommandServices object to interact with the system
return void
        public override void Run(Canguro.Controller.CommandServices services)
        {
            Item item = services.GetItem();
            services.GetProperties(Culture.Get("editCmdTitle"), item, false);
        }
EditCmd