- The string property is simply what is displayed on a GUI object, eg the label on a button.
- The value property indicates the state of that object, e.g. whether the button depressed or not.
Difference between String and Value
조회 수: 3 (최근 30일)
이전 댓글 표시
채택된 답변
Stephen23
2017년 11월 2일
편집: Stephen23
2017년 11월 2일
You should always read the documentation carefully each time you use any uicontrol object:
추가 답변 (2개)
Jan
2017년 11월 2일
편집: Jan
2017년 11월 2일
The 'String' property contains the string (character vector), which is displayed in the GUI. The 'Value' contains a numerical value, e.g. 1 or 0 for a toggle button or check box to determine, if the control is enabled or disabled currently. For a slider it is the current value between the min and max values. For a listbox, 'Value' contains the selected rows.
While the 'String' is usually fixed, the 'Value' depends on the user actions (with exceptions, of course, e.g. if the name of a user selected file is displayed in a button).
댓글 수: 0
Roman Müller-Hainbach
2017년 11월 2일
Different UI elements have different uses for the 'String' and 'Value' property. in 'uicontrol's these properties behave dependent on the 'Style' you choose ('pushbutton' by default). Things like pushbuttons, textfields probably use the 'String' property to set the displayed string. The 'Value' doesn't always have a function in uicontrols. Checkboxes are an example where this property is used. It controls the state (checked/unchecked) there. As always, read the documentation for the element you are using. The uses for such a property like 'String' and 'Value' may differ a lot for different classes of objects. Feel free to ask more specifically about the element you are using right now.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!