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

    function s=DataDump(h)
% DATADUMP  Debugging function
%
%   STRUCT=h.DataDump returns a structure containing
%   all of the MBrowser data
%

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

s.RootNode=h.RootNode;
s.CurrentNode=h.CurrentNode;
s.Figure=h.Figure;

s.GUIExists=h.GUIExists;
s.GUILocked=h.GUILocked;
s.GUILockTime=h.GUILockTime;

s.Hand=h.Hand;
s.ViewCardObj=h.ViewCardObj;
s.ViewData=h.ViewData;
s.ViewGUIDs=h.ViewGUIDs;
s.ViewMenus=h.ViewMenus;
s.ViewCurrent=h.ViewCurrent;

s.SubFigures=h.SubFigures;
s.DefaultSupport=h.DefaultSupport;