Clear Filters
Clear Filters

Alternative for copyobj function

9 views (last 30 days)
AYBARS DOGAN
AYBARS DOGAN on 28 Nov 2023
Edited: Walter Roberson on 10 Dec 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.

Answers (1)

Harimurali
Harimurali on 10 Dec 2023
Edited: Walter Roberson on 10 Dec 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.

Categories

Find more on Specifying Target for Graphics Output in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!