how to add cusom properties on current project object

1 vue (au cours des 30 derniers jours)
suraj mate
suraj mate le 8 Fév 2024
Commenté : Steven Lord le 8 Fév 2024
i have current project open and we have some default properties like
i want to add some properties on this project i have tried addprop method but it will create dynamic property which will erase when i close the project.
so i want to add custom property which i can see even after re-opening the project. howw i can do that..?
  2 commentaires
Chunru
Chunru le 8 Fév 2024
You need to edit currentProject class file to add property.
suraj mate
suraj mate le 8 Fév 2024
how can i do that ..?
do you have any refrence to do this

Connectez-vous pour commenter.

Réponses (2)

Image Analyst
Image Analyst le 8 Fév 2024
Make a function that opens the project and then adds the additional property that you want. Then call that function instead of the other one you were using to open the project (because the other one did not have your custom property).
  3 commentaires
Image Analyst
Image Analyst le 8 Fév 2024
Looks like @Steven Lord says it's not possible yet. I suggest you just declare/write your class file such that the desired properties are in there right from the start.
Steven Lord
Steven Lord le 8 Fév 2024
In order to make the new properties persist you'd have to modify the definition of the class. Since the Project object is part of MATLAB and is only included as a p-coded file:
which -all matlab.project.Project
/MATLAB/toolbox/matlab/project/api/+matlab/+project/Project.p % matlab.project.Project constructor
1) it's not possible for users to modify the class and 2) even if it were, I would strongly recommend against it. Installing an update release could cause any such changes you'd made to be overridden. Installing a new release would install the "factory" version of the class, not one with your modifications. If there was a problem with the modified version of the file and you called Technical Support, they likely would ask you to restore the MathWorks version of the file to determine if the modifications were the cause of the problem.

Connectez-vous pour commenter.


Steven Lord
Steven Lord le 8 Fév 2024
Please contact Technical Support directly using this link and ask them to enter a request to add properties to the Project object to the enhancement database. When you submit your enhancement request, please describe what properties you were hoping to add to the class and how you would use those new properties if they were available, so the developers can consider your use case when evaluating the enhancement request.

Catégories

En savoir plus sur Software Development Tools dans Help Center et File Exchange

Produits


Version

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by