Imagine you are writing a reusable UI component for a scrollable list. You want your list to have a property such, if true, the list follows the rule "if the user is already scrolled to the bottom of the list, and a new item is added to the bottom, autoscroll to the new bottom".

What would you name this property?

@mcc Is this generalized to "when the height of the list changes, preserve the current position as a fraction of the height rather than as an absolute" or is it a property peculiar to the bottom?

In the former case, something like "PositionHeightRelative". In the latter, something like "StayAtBottom". Or maybe even "StickyBottom" if I were feeling naughty.