www.gusucode.com > mbctools 工具箱 matlab 源码程序 > mbctools/@xregtools/@MBrowser/RedrawNode.m

    function RedrawNode(h,RedoList)
% MBROWSER/REDRAWNODE redraw the current node on model browser

%  Copyright 2000-2015 The MathWorks, Inc. and Ford Global Technologies, Inc.



if nargin<2
    RedoList = true;
end
OK= HideNode(h);
if OK
   ShowNode(h,RedoList);
   ViewNode(h);
end