3
有沒有一種方法來檢查給定的hobject的屬性值是否有效? 我只是把'enable'屬性作爲一個例子,我的問題是針對一般屬性,並且假設您事先並不知道所有可能接受的屬性值。如何在Matlab中檢查值是否有效屬性?
% MyBtnObject is a standard push button
% this will be ok
set(MyBtnObject, 'enable', 'on');
% and this will not, but how can I check it?
set(MyBtnObject, 'enable', 'SomeInventedProp');
如何使用'try-catch'塊? – 2011-03-27 15:12:52