Alternative for copyobj function

7 vues (au cours des 30 derniers jours)
AYBARS DOGAN
AYBARS DOGAN le 28 Nov 2023
Hello, I am trying to use app designer. Creating new tab with copyobj function but it seems it cant copy callbacks of objects. Are there any alternative for this function which can copy all the callbacks and properties? Thank you.

Réponses (1)

Harimurali
Harimurali le 10 Déc 2023
Modifié(e) : Walter Roberson le 10 Déc 2023
Hi Aybars,
I understand that you require an alternative to "copyobj" function that can copy all the callbacks and properties of objects.
The 'legacy' option of "copyobj" function can be used to copy all the callbacks and properties of the objects. Here is an example code that shows the working of the 'legacy' option of the "copyobj" function:
ax = axes;
x = randn(100,1);
y = randn(100,1);
s = scatter(x,y,"ButtonDownFcn",@(src,event)displayCoordinates(src,event,ax))
scp = copyobj(s, ax, 'legacy');
function displayCoordinates(src,~,ax)
src.MarkerEdgeColor = rand(1,3);
disp(ax.CurrentPoint(1,1:2))
end
The "scp" scatter plot object has all the properties and callbacks of the "s" scatter plot object.
Few things to note when you are using "copyobj":
  • Any event listeners won’t be copied
  • Any uicontextmenus will not be copied – it will in fact behave strangely due to the fact that it will have the uicontextmenu – but the parent is the original figure – and when you right-click on the object it will change the figure focus.
Hope this helps.

Catégories

En savoir plus sur Specifying Target for Graphics Output dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by