www.gusucode.com > mbcview 工具箱matlab源码程序 > mbcview/@cgtablenode/getBPEditorData.m

    function [Data,SFData] = getBPEditorData(node)
%GETBPEDITORDATA

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



ch = children(node);
if ~isempty(ch)
    Data = ch(1).get('data');
    SFData = ch(1).get('sfdata');
else
    Data = [];
    SFData = [];
end 
return