www.gusucode.com > appdesigner工具箱matlab源码程序 > appdesigner/+appdesigner/+internal/+application/getAppDesignerPref.m

    function value = getAppDesignerPref(pref)
%GETAPPDESIGNERPREF Returns preference PREF for the group 'appdesigner'. If
% the preference does not exist then it returns empty.

%   Copyright 2016 The MathWorks, Inc.

prefGroup = 'appdesigner';

if ispref(prefGroup, pref)
    value = getpref(prefGroup, pref);
else
    value = [];
end