v7
fixed order of arguments for x_for() functions and added the remove_line argument.
Updated:
pop_all_drawings_at(max_size, trigger, remove_line)
Removes and deletes excess drawings if any global drawing array is larger than a specified size
Parameters:
max_size (int): The maximum size of the global drawing arrays
trigger (bool): A condition to trigger the popping process
remove_line (bool)
Returns: void
shift_all_drawings_at(max_size, trigger, remove_line)
Removes and deletes excess drawings if any global drawing array is larger than a specified size
Parameters:
max_size (int): The maximum size of the global drawing arrays
trigger (bool): A condition to trigger the shifting process
remove_line (bool)
Returns: void
pop_label_for(min_size, max_size, trigger)
Removes and deletes excess labels if the global array of labels is larger than a specified size using the pop method
Parameters:
min_size (int): The minimum size of the global array of labels
max_size (int): The maximum size of the global array of labels
trigger (bool): A condition to trigger the popping process
Returns: void
pop_line_for(min_size, max_size, trigger)
Removes and deletes excess lines if the global array of lines is larger than a specified size using the pop method
Parameters:
min_size (int): The minimum size of the global array of lines
max_size (int): The maximum size of the global array of lines
trigger (bool): A condition to trigger the popping process
Returns: void
pop_polyline_for(min_size, max_size, trigger)
Removes and deletes excess polylines if the global array of polylines is larger than a specified size using the pop method
Parameters:
min_size (int): The minimum size of the global array of polylines
max_size (int): The maximum size of the global array of polylines
trigger (bool): A condition to trigger the popping process
Returns: void
pop_box_for(min_size, max_size, trigger)
Removes and deletes excess boxes if the global array of boxes is larger than a specified size using the pop method
Parameters:
min_size (int): The minimum size of the global array of boxes
max_size (int): The maximum size of the global array of boxes
trigger (bool): A condition to trigger the popping process
Returns: void
pop_linefill_for(min_size, max_size, trigger, remove_line)
Removes and deletes excess linefills if the global array of linefills is larger than a specified size using the pop method
Parameters:
min_size (int): The minimum size of the global array of linefills
max_size (int): The maximum size of the global array of linefills
trigger (bool): A condition to trigger the popping process
remove_line (bool): A condition to remove the associated lines when popping linefills
Returns: void
pop_all_drawings_for(min_size, max_size, trigger, remove_line)
Removes and deletes excess drawings if any global drawing array is larger than a specified size using the pop method
Parameters:
min_size (int): The minimum size of the global drawing arrays
max_size (int): The maximum size of the global drawing arrays
trigger (bool): A condition to trigger the popping process
remove_line (bool)
Returns: void
shift_label_for(min_size, max_size, trigger)
Removes and deletes excess labels if the global array of labels is larger than a specified size using the shift method
Parameters:
min_size (int): The minimum size of the global array of labels
max_size (int): The maximum size of the global array of labels
trigger (bool): A condition to trigger the shifting process
Returns: void
shift_line_for(min_size, max_size, trigger)
Removes and deletes excess lines if the global array of lines is larger than a specified size using the shift method
Parameters:
min_size (int): The minimum size of the global array of lines
max_size (int): The maximum size of the global array of lines
trigger (bool): A condition to trigger the shifting process
Returns: void
shift_polyline_for(min_size, max_size, trigger)
Removes and deletes excess elements from the start of an array of polylines using the shift method
Parameters:
min_size (int): The minimum size of the array
max_size (int): The maximum size of the array
trigger (bool): A condition to trigger the shifting process
Returns: void
shift_box_for(min_size, max_size, trigger)
Removes and deletes excess elements from the start of an array of boxes using the shift method
Parameters:
min_size (int): The minimum size of the array
max_size (int): The maximum size of the array
trigger (bool): A condition to trigger the shifting process
Returns: void
shift_linefill_for(min_size, max_size, trigger, remove_line)
Removes excess elements from the start of an array of linefills using the shift method
Parameters:
min_size (int): The minimum size of the array
max_size (int): The maximum size of the array
trigger (bool): A condition to trigger the shifting process
remove_line (bool): A condition to remove the associated lines when shifting linefills
Returns: void
shift_all_drawings_for(min_size, max_size, trigger, remove_line)
Removes excess elements from the start of all drawing objects using the shift method
Parameters:
min_size (int): The minimum size of the array
max_size (int): The maximum size of the array
trigger (bool): A condition to trigger the shifting process
remove_line (bool)
Returns: void