www.gusucode.com > mbcguitools 工具箱 matlab 源码程序 > mbcguitools/@mbcwidgets/@scrollTableData/getStandardColumnHeaderData.m

    function data = getStandardColumnHeaderData(obj, Cidx)
%GETSTANDARDCOLUMNHEADERDATA Get the standard column header data structure.
%
%   DATA = GETSTANDARDCOLUMNHEADERDATA(OBJ, CIDX) returns a standard data
%   structure for the specified column header.  The structure must have
%   fields Limits, Value and Label.
%
%   The standard header data is designed for use with header GUI
%   objects such as the sharedAxisHeader.

%   Copyright 2006-2007 The MathWorks, Inc.


data = struct('Limits', [0 1], ...
    'Value', 0, ...
    'Label', '');