how to add cusom properties on current project object

1 次查看(过去 30 天)
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 个)

Image Analyst
Image Analyst 2024-2-8
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 个评论
Image Analyst
Image Analyst 2024-2-8
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 2024-2-8
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.

请先登录,再进行评论。


Steven Lord
Steven Lord 2024-2-8
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.

类别

Help CenterFile Exchange 中查找有关 Software Development Tools 的更多信息

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by