필터 지우기
필터 지우기

Documentation on 'ZOrder'

조회 수: 60 (최근 30일)
Ankur
Ankur 2022년 11월 4일
답변: Santosh Fatale 2022년 11월 9일
Can some one provide me documentation on 'ZOrder'?
  댓글 수: 2
Steven Lord
Steven Lord 2022년 11월 4일
In what context? I only find two hits in the online documentation for that word, but I suspect they're each spurious. There are 13 hits in MATLAB Answers and 3 on the File Exchange; if you're referring to one of those, please link to the Answers post or the File Exchange submission.
If you're referring to something that's not in the documentation, MATLAB Answers, or the File Exchange please provide more information on what you're looking for.

댓글을 달려면 로그인하십시오.

답변 (1개)

Santosh Fatale
Santosh Fatale 2022년 11월 9일
Hi Ankur,
Kindly note that the "ZOrder" property is a hidden property associated with every block used in the model, and thus currently we have not provided any documentation about it. For more information, you can follow the answer to the following ML Answer.
You can get ZOrder property value of specific block in model using get function and can set to new value using set function.
get(blockHandle, ZOrder)
set(blockHandle, ZOrder, value)
To get block handle to one of the blocks in your model, you can either use gcb or following steps.
modelBlocks = find_system(modelName) % without .slx extension
blockHandle = getSimulinkBlockHandle(modelBlocks{2});

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by