Go to: Synopsis. Return value. Related. MEL examples.
getClassification string
getClassification is undoable, NOT queryable, and NOT editable.
Returns the classification string for a given node type.string[] | Returns the classification strings for the given node type, or an empty array if the node type is not classified. |
// Get the classification string for the "lambert" node type // string $classifications[] = `getClassification "lambert"`; for ($c in $classifications) { print("\tClassified as "+$c+"\n"); }