Main Content

clearPersonalValue

清除设置的个人值

说明

示例

clearPersonalValue(s) 清除指定设置的个人值。如果个人值未设置或不可写,MATLAB® 将引发错误。

示例

全部折叠

为 MATLAB 中的代码字体大小设置个人值,然后再将其清除。

获取根 SettingsGroup 对象,并为 MATLAB 中注释的最大列宽设置个人值。

s = settings
s.matlab.editor.language.matlab.comments.MaxWidth.PersonalValue = 80;

显示 MATLAB 中注释的最大列宽的当前值。由于设置了个人值但未设置临时值,因此设置的活动值就是该个人值。有关如何确定活动值的详细信息,请参阅Access and Modify Settings

s.matlab.editor.language.matlab.comments.MaxWidth
ans = 
 Setting 'matlab.editor.language.matlab.comments.MaxWidth' with properties.

       ActiveValue: 80
    TemporaryValue: <no value>
     PersonalValue: 80
 InstallationValue: <no value>
      FactoryValue: 75

清除个人值。该设置的活动值现在设置为出厂值。

clearPersonalValue(s.matlab.editor.language.matlab.comments.MaxWidth)
ans = 
 Setting 'matlab.editor.language.matlab.comments.MaxWidth' with properties.

       ActiveValue: 75
    TemporaryValue: <no value>
     PersonalValue: <no value>
 InstallationValue: <no value>
      FactoryValue: 75

输入参数

全部折叠

设置,指定为 Setting 对象。使用 settings 函数访问树中的根设置组对象和所有可用设置。

版本历史记录

在 R2018a 中推出