www.gusucode.com > mbcview 工具箱matlab源码程序 > mbcview/@cgtradeoffgui/@tradeoffGraphView/serializeView.m

    function out = serializeView(obj)
%SERIALIZEVIEW Get serializable setup data for the view
%
%  OUT = SERIALIZEVIEW(OBJ) returns a MATLAB array that contains the setup
%  data that will allow this view to be recreated via the deserializeView
%  function in the future.  Typically this function will return a cell
%  array of property names and values, however any MATLAB array type is
%  allowed.

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


out = {'GraphSize', obj.GraphSize, 'WideHeaderMode', obj.WideHeaderMode};