[81c116]: / pushbutton4_CreateFcn.m

Download this file

18 lines (14 with data), 668 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
% This is the create function for the button "Remove BOX"
% --- Executes on button press in pushbutton4.
% --- Executes during object creation, after setting all properties.
function pushbutton4_CreateFcn(hObject, eventdata, handles)
% hObject handle to pushbutton4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns
% Add the Axes information to the Handles
handles.Remove_Box = hObject;
%Update the Message Bar
hObject.String = '-----------';
% Update handles structure
guidata(hObject, handles);
end