What is the difference between valuechangedfcn and valuechangingfcn?

7 ビュー (過去 30 日間)
Ranjan Sonalkar
Ranjan Sonalkar 2022 年 6 月 7 日
コメント済み: Lwando Mlindini 2022 年 8 月 1 日
Some data entry window functions have the option to select a callback with options "valuechangedfcn" and "valuechangingfcn". I have used the valuechangedfcn callback to do something after the GUI user changes the value in that field. But, I don't know what valuechangingfcn is used for. Is that for doing something when a user clicks within the field and has not yet finished entering the new value, and the GUI would do something during that time? What would be an example?... Maybe pause an execution that is underway?

採用された回答

Kevin Holly
Kevin Holly 2022 年 6 月 7 日
Let's say it is a slider. "valuechangedfcn" would occur after you finished dragging the slider and let go on a new value. "valuechangingfcn" would occur while you are dragging the slider.
  3 件のコメント
Kevin Holly
Kevin Holly 2022 年 6 月 7 日
If you are dragging a slider with a left mouse button. Letting go of the left mouse button would end 'ValueChangingFcn' and trigger 'ValueChangedFcn' if it lands on a new value. So, I would say letting go of the mouse button you are holding down would "END" it.
Ranjan Sonalkar
Ranjan Sonalkar 2022 年 6 月 7 日
Makes sense. Thanks

サインインしてコメントする。

その他の回答 (1 件)

Matt J
Matt J 2022 年 6 月 7 日
編集済み: Matt J 2022 年 6 月 7 日
Is that for doing something when a user clicks within the field and has not yet finished entering the new value, and the GUI would do something during that time? What would be an example?
Suppose you wanted to implement some sort of autocomplete feature. As the user types characters into an edit-text field, its valuechangingfcn can have a different edit box display suggested completions.
  2 件のコメント
Matt J
Matt J 2022 年 6 月 7 日
編集済み: Matt J 2022 年 6 月 7 日
Attached is a simple example app where as you enter text in one box, the valuechangingfcn prints it capitalized in another box. When you type enter (or click elsewhere on the app canvas) to finalize the text, the valuechangedfcn adds an exclamation point:
Lwando Mlindini
Lwando Mlindini 2022 年 8 月 1 日
Thanks a lot tha was helpfull@Matt J

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Import and Export についてさらに検索

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by