移動先: 概要 戻り値 関連項目 MEL の例

概要

getClassification string

getClassification は「元に戻す」が可能、「照会」が不可能「編集」が不可能です。

指定したタイプのノードの分類文字列を返します。

戻り値

string[]指定したノード タイプに対する分類文字列、またはノード タイプが分類されていなければ空の配列を返します。

関連項目

addAttr, aliasAttr, attributeInfo, deleteAttr, nodeType, objExists, objectType, renameAttr

MEL の例

// Get the classification string for the "lambert" node type
//
string $classifications[] = `getClassification "lambert"`;
for ($c in $classifications)
  { print("\tClassified as "+$c+"\n"); }