SpaceSpreadsheet(Space)¶
base classes — bpy_struct, Space
- class bpy.types.SpaceSpreadsheet(Space)¶
Spreadsheet space data
- attribute_domain¶
Attribute domain to display
POINTPoint, Attribute on point.EDGEEdge, Attribute on mesh edge.FACEFace, Attribute on mesh faces.CORNERFace Corner, Attribute on mesh face corner.CURVECurve, Attribute on hair curve.
- Type
enum in [‘POINT’, ‘EDGE’, ‘FACE’, ‘CORNER’, ‘CURVE’], default ‘POINT’
- context_path¶
Context path to the data being displayed
- Type
SpreadsheetContextPathbpy_prop_collectionofSpreadsheetContext, (readonly)
- display_context_path_collapsed¶
- Type
boolean, default False
- geometry_component_type¶
Part of the geometry to display data from
MESHMesh, Mesh component containing point, corner, edge and face data.POINTCLOUDPoint Cloud, Point cloud component containing only point data.INSTANCESInstances, Instances of objects or collections.
- Type
enum in [‘MESH’, ‘POINTCLOUD’, ‘INSTANCES’], default ‘MESH’
- is_pinned¶
Context path is pinned
- Type
boolean, default False
- object_eval_state¶
EVALUATEDEvaluated, Use data from fully or partially evaluated object.ORIGINALOriginal, Use data from original object without any modifiers applied.
- Type
enum in [‘EVALUATED’, ‘ORIGINAL’], default ‘EVALUATED’
- show_only_selected¶
Only include rows that correspond to selected elements
- Type
boolean, default False
- Type
boolean, default False
- set_geometry_node_context(node_editor, node)¶
Update context_path to point to a specific node in a node editor
- Parameters
node_editor (
SpaceNodeEditor) – Editor to take the context from
- classmethod bl_rna_get_subclass(id, default=None)¶
- Parameters
id (string) – The RNA type identifier.
- Returns
The RNA type or default when not found.
- Return type
bpy.types.Structsubclass
- classmethod bl_rna_get_subclass_py(id, default=None)¶
- Parameters
id (string) – The RNA type identifier.
- Returns
The class or default when not found.
- Return type
type
- 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 (function) – A function that will be called when the region is drawn. It gets the specified arguments as input.
args (tuple) – 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
- 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.
Inherited Properties
Inherited Functions