Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
uiCreateNode
ノードを作成 (Scilabツリー用)
呼び出し手順
myNode = uiCreateNode(label[, icon[, callback]])
入力パラメータ
- label
ノードのラベルを指定する文字列行列.
- icon (optional)
ノードのアイコン画像を指定する文字列行列.
- callback (optional)
ノードのコールバック命令を指定する文字列行列.
Output parameters
- myNode
ツリー型のノード
説明
ツリー型のノード(ノードまたは葉)を作成します.
例
leaf11 = uiCreateNode('leaf 1.1', 'iconLeaf1.1', 'callbackLeaf1.1') leaf12 = uiCreateNode('leaf 1.2', 'iconLeaf1.2', 'callbackLeaf1.2') leaf31 = uiCreateNode('leaf 3.1', 'iconLeaf3.1', 'callbackLeaf3.1') leaf32 = uiCreateNode('leaf 3.2', 'iconLeaf3.2', 'callbackLeaf3.2') node1 = uiCreateNode('Node 1', 'iconNode1', 'callbackNode1') node2 = uiCreateNode('Node 2', 'iconNode2', 'callbackNode2') node3 = uiCreateNode('Node 3', 'iconNode3', 'callbackNode3') root = uiCreateNode('Root', 'iconRoot', 'callbackRoot')
参照
- uiCreateTree — ツリーを作成
- uiDisplayTree — GUIモードでツリーを印刷
- uiDumpTree — コンソールでツリーを印刷 (テキストモード)
- uiInsertNode — ツリーを挿入
- uiDeleteNode — ツリーを削除
- uiConcatTree — ツリーを結合
- uiEqualsTree — 2つのツリーを比較
- uiFindNode — ツリーでノードを探す
- uiGetParentNode — ノードの親を取得
- uiGetChildrenNode — 子ノードを取得
- uiGetNodePosition — ノードの位置を取得
Report an issue | ||
<< uiConcatTree | Tree | uiCreateTree >> |