[81c116]: / pushbutton3_CreateFcn.m

Download this file

17 lines (13 with data), 617 Bytes

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