How can I make the numeric edit field blank?
41 次查看(过去 30 天)
显示 更早的评论
Hi. I have a question about numeric edit field object when using App Designer.
I want to make the numeric edit field blank, but it shows that 'AllowEmpty' property is off.
However, I can't find the 'AllowEmpty' property at App Designer.
Isn't it possible to make numeric edit field blank?
0 个评论
采纳的回答
更多回答(1 个)
Amos
2023-5-26
编辑:Amos
2023-5-26
It appears the .AllowEmpty property is available but hidden (not listed; no autocomplete)
The following works (R2023a):
classdef xEmptyNumField < matlab.ui.componentcontainer.ComponentContainer
% Properties that correspond to underlying components
properties (Access = private, Transient, NonCopyable)
allowEmptyButton matlab.ui.control.StateButton
xview matlab.ui.control.NumericEditField
end
...
% Callbacks that handle component events
methods (Access = private)
% Value changed function: allowEmptyButton
function allowEmptyButtonValueChanged(comp, event)
comp.xview.AllowEmpty = comp.allowEmptyButton.Value;
end
end
...
end
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Create Custom UI Components 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!