www.gusucode.com > mbcguitools 工具箱 matlab 源码程序 > mbcguitools/@mbctree/@treenode/expand.m

    function expand(node)
%EXPAND Request that the tree expands this node.
%
%   EXPAND(NODE)

%   Copyright 2006-2011 The MathWorks, Inc.

if ~isempty( node(1).Tree )
    node(1).Tree.expandNode( node );
end