www.gusucode.com > mbcguitools 工具箱 matlab 源码程序 > mbcguitools/@mbcmultiview/@MultiViewPanel/pRemoveStatusMessage.m

    function pRemoveStatusMessage(obj, messageID)
%PREMOVESTATUSMESSAGE Remove a status bar message
%
%  PREMOVESTATUSMESSAGE(OBJ, MESSAGEID) removes the message associated with
%  MESSAGEID from the status bar, if one has been set,

%  Copyright 2005 The MathWorks, Inc. and Ford Global Technologies, Inc.


if ~isempty(obj.StatusBar) && ishandle(obj.StatusBar)
    obj.StatusBar.removeMessage(messageID);
end