Commands
getClassification
Go to:
Return value. Related commands. Examples.
Synopsis
<B>getClassification</B></b> <EM>nodeType</EM></B>
Return value
Returns the classification strings for the given node type, or
the empty string if the node type is not classified.
Related commands
addAttr, aliasAttr, deleteAttr, nodeType, objExists, attributeInfo, objectType, renameAttrExamples
// Get the classification string for the "lambert" node type
//
string $classifications[] = `getClassification "lambert"`;
for ($c in $classifications) { print("\tClassified as "+$c+"\n"); }