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

    function checks = getChecks(obj)
%GETCHECKS Get the checked status of each item
%
%  CHECKS = GETCHECKS(OBJ) returns a boolean vector with true entries
%  indicating which items have been checked.

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

% This just wraps a call to the property.
checks = obj.Checks;