How to get the updated name after add_block command with MakeNameUnique and with duplicate name ?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Abhijit Chougule
el 20 de Feb. de 2017
Comentada: Abhijit Chougule
el 10 de Mzo. de 2017
If I am adding a block by add_block command with MakeNameUnique as 'On', the command will change the name if it is duplicate. I am using this command in script. My question is, is there any way to know by script the updated new name given by add_block command.
Respuesta aceptada
ES
el 10 de Mzo. de 2017
add_block's output will be the handle of the newly added block. From this, the name of the newly inserted block can be found out.
eg;
blockHandle = add_block(gcb, gcb, 'MakeNameUnique', 'on');
get_param(blockHandle , 'Name')
Más respuestas (0)
Ver también
Categorías
Más información sobre Event Functions 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!