Test case, specified as a matlab.uitest.TestCase object.
Component to type in during test, specified as a UI component object that supports a type gesture. Components that support type gestures include edit fields and text areas.
Value to type into the component. The data type of
value depends on the type of component under test.
For example, if the component is a spinner, specify
value as numeric. If the component is a text area
or table, specify value as a character vector or
string.
Target table UI component, specified as a
matlab.ui.control.Table object. Table UI components are
created with the uitable function.
Indices of the table cell to type in, specified as a 1-by-2 vector with
the row index appearing before the column index.
Create a table UI component that contains a mixture of different data types. Set the ColumnEditable property to true so that users can edit the data in the table.
fig = uifigure;
uit = uitable(fig);
d = {'Male',52,true;'Male',40,true;'Female',25,false};
uit.Data = d;
uit.ColumnName = {'Gender','Age','Authorized'};
uit.ColumnEditable = true;
Create an interactive test case and verify the initial value of the table cell with indices (1,2).
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.