This function allows data binding of values between property in source and view objects.
Arguments
modelObject : Object which one of its property will be bound. Must be subclass of matlab.mixin.SetGet
propname : Name of property of modelObject to bind
viewObjects : UI object which its value will be bound. can be multiple. Should have property 'Value'
i.e. togglebutton, checkbox, numeric editfield or gauge
Example
bindValue(model,'threshold',thresholdEditField);
% Binds model.threshold with thresholdEditField.Value
bindValue(model,'ROI.xmin',ROI_x_editfield);
% Binds model.ROI.xmin with ROI_x_editfield.Value
引用格式
Hyeokjin Jho (2024). bindValue (https://www.mathworks.com/matlabcentral/fileexchange/90885-bindvalue), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
平台兼容性
Windows macOS Linux标签
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!