Go to: Synopsis. Return value. Flags. Python examples.

Synopsis

removeMultiInstance( attribute , [b=boolean])

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

removeMultiInstance is undoable, NOT queryable, and NOT editable.

Removes a particular instance of a multiElement. This is only useful for input attributes since outputs will get regenerated the next time the node gets executed. This command will remove the instance and optionally break all incoming and outgoing connections to that instance. If the connections are not broken (with the -b true) flag, then the command will fail if connections exist.

Return value

boolean(true if the instance was removed, false if something went wrong, like the attribute is connected but -b true was not specified)

Flags

b
Long name (short name) Argument types Properties
b(b) boolean create
If the argument is true, all connections to the attribute will be broken before the element is removed. If false, then the command will fail if the element is connected.

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can have multiple arguments, passed either as a tuple or a list.

Python examples

import maya.cmds as cmds

cmds.createNode('choice',n='choice')
cmds.setAttr('choice.input[0]',2.0)
cmds.setAttr('choice.input[4]',4.0)
cmds.connectAttr('choice.input[8]','choice.input[100]')

# This will remove the element with index 4 from the input of
# the choice node as long as there are no incoming or outgoing
# connections to the attribute.
#
cmds.removeMultiInstance( 'choice.input[4]' )

# This will remove the element with index 100 from the input of
# the choice node, breaking any existing connections first.
#
cmds.removeMultiInstance( 'choice.input[100]', b=True )