Space(bpy_struct)
base class — bpy_struct
Subclasses
- SpaceClipEditor(Space)
- SpaceConsole(Space)
- SpaceDopeSheetEditor(Space)
- SpaceFileBrowser(Space)
- SpaceGraphEditor(Space)
- SpaceImageEditor(Space)
- SpaceInfo(Space)
- SpaceLogicEditor(Space)
- SpaceNLA(Space)
- SpaceNodeEditor(Space)
- SpaceOutliner(Space)
- SpacePreferences(Space)
- SpaceProperties(Space)
- SpaceSequenceEditor(Space)
- SpaceSpreadsheet(Space)
- SpaceTextEditor(Space)
- SpaceView3D(Space)
- class bpy.types.Space(bpy_struct)
Space data for a screen area
- show_locked_time
Synchronize the visible timeline range with other time-based editors (default False)
- Type:
bool
- show_region_header
(default False)
- Type:
bool
- type
Space data type (default
'EMPTY', readonly)- Type:
Literal[Space Type Items]
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- classmethod draw_handler_add(callback, args, region_type, draw_type)
Add a new draw handler to this space type. It will be called every time the specified region in the space type will be drawn. Note: All arguments are positional only for now.
- Parameters:
callback (Callable[..., Any]) – A function that will be called when the region is drawn. It gets the specified arguments as input, it’s return value is ignored.
args (tuple[Any, ...]) – Arguments that will be passed to the callback.
region_type (str) – The region type the callback draws in; usually
WINDOW. (bpy.types.Region.type)draw_type (str) – Usually
POST_PIXELfor 2D drawing andPOST_VIEWfor 3D drawing. In some casesPRE_VIEWcan be used.BACKDROPcan be used for backdrops in the node editor.
- Returns:
Handler that can be removed later on.
- Return type:
object
- classmethod draw_handler_remove(handler, region_type)
Remove a draw handler that was added previously.
- Parameters:
handler (object) – The draw handler that should be removed.
region_type (str) – Region type the callback was added to.