Package nuke :: Class BackdropNode
[hide private]
[frames] | no frames]

Class BackdropNode

object --+    
         |    
 nuke.Node --+
             |
            nuke.BackdropNode

Instance Methods [hide private]
 
__getitem__(x, y)
x[y]
 
__len__(x)
len(x)
 
__repr__(x)
repr(x)
 
__str__(x)
str(x)
a list of nodes contained inside the backdrop
getNodes(self)
Get the nodes contained inside a backdrop node Example: backdrop = nuke.toNode("BackdropNode1") nodesInBackdrop = backdrop.getNodes()
None
selectNodes(self, selectNodes)
Select or deselect all nodes in backdrop node Example: backdrop = nuke.toNode("BackdropNode1") backdrop.selectNodes(True)

Inherited from Node: Class, __new__, __reduce_ex__, addCallback, addKnob, allKnobs, autoplace, bbox, canSetInput, channels, clearCallbacks, clearCustomIcon, clones, connectInput, deepSample, deepSampleCount, dependencies, dependent, error, executePythonCallback, fileDependencies, firstFrame, forceUpdateLocalization, forceValidate, format, frameRange, fullName, getNumKnobs, hasError, height, help, hideControlPanel, input, inputs, isCloneable, isLocalizationOutdated, isLocalized, isSelected, knob, knobs, lastFrame, linkableKnobs, localizationProgress, lock, locked, maxInputs, maxOutputs, maximumInputs, maximumOutputs, metadata, minInputs, minimumInputs, name, numKnobs, opHashes, optionalInput, parent, performanceInfo, pixelAspect, proxy, readKnobs, redraw, removeCallback, removeKnob, resetKnobsToDefault, rootNode, running, sample, screenHeight, screenWidth, selectOnly, setCustomIcon, setInput, setName, setSelected, setTab, setXYpos, setXpos, setYpos, showControlPanel, showInfo, shown, treeHasError, unlock, upstreamFrameRange, width, writeKnobs, xpos, ypos

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __reduce__, __setattr__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__getitem__(x, y)
(Indexing operator)

 

x[y]

Overrides: Node.__getitem__

__len__(x)
(Length operator)

 

len(x)

Overrides: Node.__len__

__repr__(x)
(Representation operator)

 

repr(x)

Overrides: object.__repr__

__str__(x)
(Informal representation operator)

 

str(x)

Overrides: object.__str__

getNodes(self)

 

Get the nodes contained inside a backdrop node Example: backdrop = nuke.toNode("BackdropNode1") nodesInBackdrop = backdrop.getNodes()

Returns: a list of nodes contained inside the backdrop
a list of nodes contained inside the backdrop.

selectNodes(self, selectNodes)

 

Select or deselect all nodes in backdrop node Example: backdrop = nuke.toNode("BackdropNode1") backdrop.selectNodes(True)

Returns: None
None.