bindValue

版本 1.0.1 (1.6 KB) 作者: Hyeokjin Jho
This function allows data binding of values between property in source and view objects.
51.0 次下载
更新时间 2021/4/26

查看许可证

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 版本兼容性
创建方式 R2021a
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.1

Updated description about modelObject

1.0.0