Methods
clear()
Clears the channel list.
parms()
→ tuple
of hou.Parm
Returns a tuple of hou.Parm with all the channels in the channel list.
selected()
→ tuple
of hou.Parm
Returns a tuple of hou.Parm with all the channels selected in the channel list.
deselected()
→ tuple
of hou.Parm
Returns a tuple of hou.Parm with all the channels deselected in the channel list.
pinned()
→ tuple
of hou.Parm
Returns a tuple of hou.Parm with all the channels pinned in the channel list.
unpinned()
→ tuple
of hou.Parm
Returns a tuple of hou.Parm with all the channels unpinned in the channel list.
selectedValue()
→ tuple
of hou.Parm
Returns a tuple of hou.Parm with all the channels with their value column selected in the channel list.
deselectedValue()
→ tuple
of hou.Parm
Returns a tuple of hou.Parm with all the channels with their value column deselected in the channel list.
addParm(parm, selected, pinned, valueselected)
Adds a parameter to the channel list setting selected, pinned and value selected flags.
parm
A hou.Parm.
selected
Select the channel, True by default.
pinned
Pin the channel, False by default.
valueselected
Select the value column of the channel, False by default.
addParms(parms, selected, pinned, valueselected)
Adds a list of parameters to the channel list setting selected, pinned and value selected flags.
parms
A tuple
of hou.Parm.
selected
Select the channel, True by default.
pinned
Pin the channel, False by default.
valueselected
Select the value column of the channel, False by default.
addPath(path, selected, pinned, valueselected)
Adds a parameter to the channel list setting selected, pinned and value selected flags.
path
A full path string to a parameter.
selected
Select the channel, True by default.
pinned
Pin the channel, False by default.
valueselected
Select the value column of the channel, False by default.
addPaths(paths, selected, pinned, valueselected)
Adds a list of parameters using full paths to the channel list setting selected, pinned and value selected flags.
path
A full path string to a parameter.
selected
Select the channel, True by default.
pinned
Pin the channel, False by default.
valueselected
Select the value column of the channel, False by default.
remove(parm)
Remove a parameter or a list of parameters from the channel list.
select(parm)
Select a parameter or a list of parameters in the channel list.
deselect(parm)
Deselect a parameter or a list of parameters in the channel list.
pin(parm)
unpin(parm)
Unpin a parameter or a list of parameters in the channel list.
selectValue(parm)
Select the value column of a parameter or a list of parameters in the channel list.
deselectValue(parm)
Deselect the value column of a parameter or a list of parameters in the channel list.
contains(parm)
→ bool
Returns True if the parameter is in the Channel List.
parm
A hou.Parm.
isSelected(parm)
→ bool
Returns True if the parameter is selected in the Channel List.
parm
A hou.Parm.
isPinned(parm)
→ bool
Returns True if the parameter is pinned in the Channel List.
parm
A hou.Parm.
isValueSelected(parm)
→ bool
Returns True if the parameter has its value column selected in the Channel List.
parm
A hou.Parm.
filter()
→ str
Returns the channel list filter string.
keepSelection()
→ bool
Returns the channel list Keep Selection flag.
enableFilter()
→ bool
Returns True if the channel list filtering is active.
filterRotates()
→ bool
Returns True if the channel list rotations filtering is active.
filterTranslates()
→ bool
Returns True if the channel list translations filtering is active.
filterScales()
→ bool
Returns True if the channel list scales filtering is active.
setFilter(self,pattern)
`
Set the channel list filter string.
pattern
A pattern string.
setKeepSelection(self,on)
Set the channel list Keep Selection flag.
setEnableFilter(self,on)
Enable/Disable the channel list filtering.
setFilterRotates(self,on)
Enable/Disable channel list rotations filtering.
setFilterTranslates(self,on)
Enable/Disable channel list translations filtering.
setFilterScales(self,on)
Enable/Disable channel list scales filtering.
asCode(self,var_name)
→ str
Returns a python code string that be run to recreate a ChannelList with the same content as the current object.
var_name
The variable name used in the generated code for the channel list.
It defaults to chanlist
.