pymel.core.general.getClassification

static general.getClassification(*args)

Returns the classification string for a given node type.

Modifications:
  • previously returned a list with a single colon-separated string of classifications. now returns a list of classifications

    rtype:unicode list

Derived from mel command maya.cmds.getClassification

Example:

import pymel.core as pm

# Get the classification string for the "lambert" node type
#
classifications = pm.getClassification('lambert')
for c in classifications[:]:
    print '\tClassified as ' + c + '\n'

Previous topic

pymel.core.general.getAttr

Next topic

pymel.core.general.getEnums

Core

Core Modules

Other Modules

This Page