www.gusucode.com > mbcview 工具箱matlab源码程序 > mbcview/@cgsurfview/@dataviewer/editOptions.m

    function redraw = editOptions(obj,plottype)
% DATAVIEWER/EDITOPTIONS Displays the "Options" dialog for the specified plot type.
%
% redraw = obj.editOptions(plottype)
%
% The parameter is the index of the plot type in the matrix
% in dataviewer.m
% The return value is non-zero if a full redraw is required
% is required

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


pt = obj.plottypes;
po = pt(plottype).optionsobj;
edit(po);

redraw = 0; % current implementation doesn't ever require a redraw