CreateRange¶
This node is deprecated.
Use Create Selection Interval instead. Defines an index range that can be used to select items from a collection, e.g., using SelectRange. Slices consist of a start index, a stop index, and a step size, and the end value is by convention not included in the range unless the inclusive option is set to True. Both the start and end value are optional, and if not given, range from/to the respective end of the data. Slices use 0-based indexing, and negative integers count from the end of the collection that they are used with, where -1 is the last element, -2 the second-to-last etc. Version 1.0.0
Ports/Properties¶
selection¶
Selection range.
start¶
Start value of the range.
stop¶
End value of the range. Not included in the range unless the inclusive option is set to True.
step¶
Step size of the range.
inclusive¶
Whether the stop value is inclusive or exclusive.
set_breakpoint¶
Set a breakpoint on this node. If this is enabled, your debugger (if one is attached) will trigger a breakpoint.
metadata¶
User-definable meta-data associated with the node. Usually reserved for technical purposes.