bindValue
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
Cite As
Hyeokjin Jho (2024). bindValue (https://www.mathworks.com/matlabcentral/fileexchange/90885-bindvalue), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxTags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.