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

    function out = get(node,property)
%GET

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



switch lower(property)
case 'sfdata'
    out = node.SFData;
otherwise
    out = get(node.cgtablenode,property);
end
return