a b/text5_CreateFcn.m
1
% This function display the "Waveform title"
2
% --- Executes during object creation, after setting all properties.
3
function text5_CreateFcn(hObject, eventdata, handles)
4
    % hObject    handle to text5 (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
    handles.Waveform_Title          = hObject;
9
    handles.Waveform_Title.String   = '----';
10
    
11
    % Update handles structure
12
    guidata(hObject, handles);
13
end