Difference between String and Value
Ältere Kommentare anzeigen
I am new working with GUIs. My Question is, when I use String and when i use value? I dont understand the difference.
set(handles.staticText1, ' String')
Akzeptierte Antwort
Weitere Antworten (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).
Roman Müller-Hainbach
am 2 Nov. 2017
0 Stimmen
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.
Kategorien
Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!