Main Content

removeCategory

Remove project category of labels

Description

example

removeCategory(proj,categoryName) removes a category of labels from the specified project.

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 category of labels.

createCategory(proj,"Engineers","char");

Remove the new category of labels.

removeCategory(proj,"Engineers");

A message appears warning you that you cannot undo the operation. Click Continue. You can configure warnings in the MATLAB® Project Preferences.

Input Arguments

collapse all

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

Name of the category to remove, specified as a character vector, string scalar, or Category object. The category must exist in the project.

Version History

Introduced in R2019a