Add cut push button to figure
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How can I add a cut button to my figure?
E.g. for getting file open and save buttons, I use this code:
audiotb = uitoolbar(this.FigureHandle);
tth = findall(this.FigureHandle, 'Type', 'uitoolbar');
ttb = findall(tth, 'Type', 'uipushtool');
fo = findobj(ttb, 'Tag', 'Standard.FileOpen');
set(fo, 'Separator', 'on', ...
'TooltipString', 'Öffnen', ...
'ClickedCallback', @(hobj, evd) fileOpenCallback(this));
copyobj(fo, audiotb);
fo = findobj(ttb, 'Tag', 'Standard.SaveFigure');
set(fo, 'TooltipString', 'Speichern', ...
'ClickedCallback', @(hobj, evd) fileWriteCallback(this));
copyobj(fo, audiotb);
Is there something like Standard.Cut?
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!