Borrar filtros
Borrar filtros

coordinate element in table box

2 visualizaciones (últimos 30 días)
Luca Re
Luca Re el 5 de Dic. de 2023
Editada: Avni Agrawal el 15 de Dic. de 2023
how can i find position (xx,xx,xx) of this table box?

Respuestas (1)

Avni Agrawal
Avni Agrawal el 15 de Dic. de 2023
Editada: Avni Agrawal el 15 de Dic. de 2023
Hi Luca,
I understand that you want to determine the position of a cell within a table in App Designer. It can be done by using the ‘CellSelectionCallback’ property of the ‘uitable’.
You can refer to the code snippet below for obtaining the location:
% Cell selection callback: UITable
function UITableCellSelection(app, event)
indices = event.Indices;
row = indices(1, 1);
col = indices(1, 2);
end
I hope this helps.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by