built-in class used for all collections.
Note
Note that bpy.types.bpy_prop_collection is not actually available from within blender, it only exists for the purpose of documentation.
Returns the index of a key in a collection or -1 when not found (matches pythons string find function of the same name).
Parameters: | key (string) – The identifier for the collection member. |
---|---|
Returns: | index of the key. |
Return type: | int |
This is a function to give fast access to attributes within a collection.
collection.foreach_get(someseq, attr)
# Python equivalent
for i in range(len(seq)): someseq[i] = getattr(collection, attr)
This is a function to give fast access to attributes within a collection.
collection.foreach_set(seq, attr)
# Python equivalent
for i in range(len(seq)): setattr(collection[i], attr, seq[i])
Returns the value of the item assigned to key or default when not found (matches pythons dictionary function of the same name).
Parameters: |
|
---|
Return the identifiers of collection members (matching pythons dict.items() functionality).
Returns: | (key, value) pairs for each member of this collection. |
---|---|
Return type: | list of tuples |
Return the identifiers of collection members (matching pythons dict.keys() functionality).
Returns: | the identifiers for each member of this collection. |
---|---|
Return type: | list of strings |
Return the values of collection (matching pythons dict.values() functionality).
Returns: | the members of this collection. |
---|---|
Return type: | list |