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

Run() public method

Executes the command. Opens the properties window to edit the Active Layer
public Run ( Canguro services ) : void
services Canguro CommandServices object to interact with the system
return void
        public override void Run(Canguro.Controller.CommandServices services)
        {
            Layer layer = services.Model.ActiveLayer;
            services.GetProperties(Culture.Get("editCmdTitle"), layer, false);
        }
EditLayerCmd