x_dialog
Dialog for interactive multi-lines input.
Syntax
result = x_dialog(labels, valueini) result = x_dialog(labels, valueini, ispassword)
Arguments
- labels
column vector of strings, comment for dialog
- valueini
n column vector of strings, initial value suggested
- ispassword
Boolean scalar: when
%T
, this dialog will be used to get a password, the characters typed by the user will be hidden and returned value will contains a single string. Default value is%F
.- result
User answer: n column vector of strings if returned with "Ok" button or [] if returned with "Cancel" button
Description
Opens a dialog for interactive multi-lines input.
Examples
gain=evstr(x_dialog('Value of gain ?','0.235')) x_dialog(['Method';'Enter sampling period'],'1') m=evstr(x_dialog('Enter a 3x3 matrix',['[0 0 0';'0 0 0';'0 0 0]']))
passwd = x_dialog("Enter your password:","scilab", %t)
See also
History
Version | Description |
2025.0.0 | ispassword parameter added. |
Report an issue | ||
<< x_choose_modeless | GUI | x_matrix >> |