# Titanium.UI.iOS.TableViewScrollPosition

A set of constants for the position value that can be used for the position property of Titanium.UI.TableView when invoking scrollToIndex.

Availability
5.4.0
9.2.0

# Constants

# BOTTOM

Availability
5.4.0
9.2.0
BOTTOM :Number

The table view scrolls the row of interest to the bottom of the visible table view.


# MIDDLE

Availability
5.4.0
9.2.0
MIDDLE :Number

The table view scrolls the row of interest to the middle of the visible table view.


# NONE

Availability
5.4.0
9.2.0
NONE :Number

The table view scrolls the row of interest to be fully visible with a minimum of movement. If the row is already fully visible, no scrolling occurs. For example, if the row is above the visible area, the behavior is identical to that specified by TOP. This is the default.


# TOP

Availability
5.4.0
9.2.0
TOP :Number

The table view scrolls the row of interest to the top of the visible table view.