Hauptinhalt

removeShortcut

Remove shortcut from project

Description

removeShortcut(proj,shortcuts) removes the specified shortcuts from the specified project.

example

Examples

collapse all

Open the Times Table App project. Use currentProject to create a project object from the currently loaded project.

openExample("matlab/TimesTableProjectExample")
proj = currentProject;

Create a new file.

filepath = fullfile(proj.RootFolder,"newVariables.mat");
save(filepath)

Add this new file to the project.

projectFile = addFile(proj,filepath)

Add a new shortcut to the new file.

shortcut = addShortcut(proj,filepath);

Remove the shortcut.

removeShortcut(proj,shortcut);

Input Arguments

collapse all

Project, specified as a matlab.project.Project object. Use currentProject to create a project object from the currently loaded project.

Shortcut to remove, specified as a string array, a cell array of character vectors, or an array of Shortcut objects.

Version History

Introduced in R2019a

expand all