|
a |
|
b/text3_CreateFcn.m |
|
|
1 |
%This function controls the message bar |
|
|
2 |
% --- Executes during object creation, after setting all properties. |
|
|
3 |
function text3_CreateFcn(hObject, eventdata, handles) |
|
|
4 |
% hObject handle to text3 (see GCBO) |
|
|
5 |
% eventdata reserved - to be defined in a future version of MATLAB |
|
|
6 |
% handles empty - handles not created until after all CreateFcns called |
|
|
7 |
|
|
|
8 |
% Add the Axes information to the Handles |
|
|
9 |
handles.Message_Bar = hObject; |
|
|
10 |
|
|
|
11 |
%Update the Message Bar |
|
|
12 |
hObject.String = '-----------'; |
|
|
13 |
|
|
|
14 |
% Update handles structure |
|
|
15 |
guidata(hObject, handles); |
|
|
16 |
end |