Documentation on 'ZOrder'

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 日

0 投票

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});

1 件のコメント

Richard Crozier
Richard Crozier 2024 年 11 月 10 日
Well it should be documented becase you often see many conflicts when merging using the Simulink merge tool and there's no way to find out if it's important

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeSimulink についてさらに検索

製品

リリース

R2019a

タグ

質問済み:

2022 年 11 月 4 日

コメント済み:

2024 年 11 月 10 日

Community Treasure Hunt

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

Start Hunting!

Translated by