How to programmatically scroll to a row of a uitable in appdesigner?

7 visualizaciones (últimos 30 días)
Peter Valent
Peter Valent el 25 de Jun. de 2019
Respondida: Kanishk el 12 de Feb. de 2025 a las 5:24
Hi I have created a small app in appdesigner. It contains a uitable component which holds many rows of data. The app enables to set a value find in a specific column and after pressing a push button it should scroll to the row with this value. I know the position of the row but I dont know how to scroll to the row.
How can I do it?

Respuestas (1)

Kanishk
Kanishk el 12 de Feb. de 2025 a las 5:24
You can programmatically scroll to a specific row in a UITable component within a MATLAB app, you can use the scroll function. This function allows you to specify the row number you want to bring into view. Below is a simple example demonstrating how to use the scroll function with a UITable:
uit = uitable(fig,"Data",randi(100,100,3));
scroll(uit, "row", 25)
You can learn more about "scroll" function from this official MATLAB documentation.

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by