Property(bpy_struct)

base class — bpy_struct

subclasses — PointerProperty, EnumProperty, IntProperty, CollectionProperty, BooleanProperty, FloatProperty, StringProperty

class bpy.types.Property(bpy_struct)

RNA property definition

description

Description of the property for tooltips

Type :string, default “”, (readonly)
identifier

Unique name used in the code and scripting

Type :string, default “”, (readonly)
is_hidden

True when the property is hidden

Type :boolean, default False, (readonly)
is_never_none

True when this value can’t be set to None

Type :boolean, default False, (readonly)
is_output

True when this property is an output value from an RNA function

Type :boolean, default False, (readonly)
is_readonly

Property is editable through RNA

Type :boolean, default False, (readonly)
is_registered

Property is registered as part of type registration

Type :boolean, default False, (readonly)
is_registered_optional

Property is optionally registered as part of type registration

Type :boolean, default False, (readonly)
is_required

False when this property is an optional argument in an RNA function

Type :boolean, default False, (readonly)
is_runtime

Property is editable through RNA

Type :boolean, default False, (readonly)
name

Human readable name

Type :string, default “”, (readonly)
srna

Struct definition used for properties assigned to this item

Type :Struct, (readonly)
subtype

Semantic interpretation of the property

Type :enum in [‘NONE’, ‘FILE_PATH’, ‘DIRECTORY_PATH’, ‘UNSIGNED’, ‘PERCENTAGE’, ‘FACTOR’, ‘ANGLE’, ‘TIME’, ‘DISTANCE’, ‘COLOR’, ‘TRANSLATION’, ‘DIRECTION’, ‘MATRIX’, ‘EULER’, ‘QUATERNION’, ‘XYZ’, ‘COLOR_GAMMA’, ‘LAYER’, ‘LAYER_MEMBERSHIP’], default ‘NONE’, (readonly)
type

Data type of the property

Type :enum in [‘BOOLEAN’, ‘INT’, ‘FLOAT’, ‘STRING’, ‘ENUM’, ‘POINTER’, ‘COLLECTION’], default ‘BOOLEAN’, (readonly)
unit

Type of units for this property

Type :enum in [‘NONE’, ‘LENGTH’, ‘AREA’, ‘VOLUME’, ‘ROTATION’, ‘TIME’, ‘VELOCITY’, ‘ACCELERATION’], default ‘NONE’, (readonly)

Inherited Properties

Inherited Functions

References

Previous topic

PoseBoneConstraints(bpy_struct)

Next topic

PropertyActuator(Actuator)