www.gusucode.com > mbcview 工具箱matlab源码程序 > mbcview/@cgtools/@breakpointeditor/copy.m

    function data = copy(obj)
%COPY Copy selected table data to clipboard
%
%  Copies data from the selected table cells onto the clipboard, and
%  returns a copy.

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


obj.TableWrapper.Peer.copy;
% call 'paste' to get a copy of the data to return
data = clipboard('paste');