SpreadsheetRowFilter(bpy_struct)¶
base class — bpy_struct
- class bpy.types.SpreadsheetRowFilter(bpy_struct)¶
- column_name¶
(default “”, never None)
- Type:
str
- enabled¶
(default False)
- Type:
bool
- operation¶
(default
'EQUAL')- Type:
Literal[‘EQUAL’, ‘GREATER’, ‘LESS’]
- show_expanded¶
(default False)
- Type:
bool
- threshold¶
How close float values need to be to be equal (in [0, inf], default 0.0)
- Type:
float
- value_boolean¶
(default False)
- Type:
bool
- value_color¶
(array of 4 items, in [-inf, inf], default (0.0, 0.0, 0.0, 0.0))
- Type:
bpy_prop_array[float]
- value_float¶
(in [-inf, inf], default 0.0)
- Type:
float
- value_float2¶
(array of 2 items, in [-inf, inf], default (0.0, 0.0))
- Type:
bpy_prop_array[float]
- value_float3¶
(array of 3 items, in [-inf, inf], default (0.0, 0.0, 0.0))
- Type:
bpy_prop_array[float]
- value_int¶
(in [-inf, inf], default 0)
- Type:
int
- value_int2¶
(array of 2 items, in [-inf, inf], default (0, 0))
- Type:
bpy_prop_array[int]
- value_int3¶
(array of 3 items, in [-inf, inf], default (0, 0, 0))
- Type:
bpy_prop_array[int]
- value_int8¶
(in [-128, 127], default 0)
- Type:
int
- value_string¶
(default “”, never None)
- Type:
str
- 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, /)¶
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type