Skip to content

iOSPageIndicator

iOS PageIndicator.

Extends iOSObject

Behavior Pattern: iOSObjectPageIndicatorBehavior

Property Summary

Property Description Getter Setter
ItemCount Number of items. GetItemCount
PageIndex Selected page index. GetPageIndex

Action Summary

Action Description
DoNextPage Navigates to next page.
DoPrevPage Navigates to previous page.
DoSelectPage Selects a page at index.

Property Detail

ItemCount

Number of items.

Type: number

Accessors: GetItemCount

value = SeS('SomeiOSPageIndicator').GetItemCount()

PageIndex

Selected page index.

Type: number

Accessors: GetPageIndex

value = SeS('SomeiOSPageIndicator').GetPageIndex()

Action Detail

DoNextPage

Navigates to next page.

SeS('SomeiOSPageIndicator').DoNextPage()

Returns:

boolean: 'true' if success, 'false' otherwise.

DoPrevPage

Navigates to previous page.

SeS('SomeiOSPageIndicator').DoPrevPage()

Returns:

boolean: 'true' if success, 'false' otherwise.

DoSelectPage

Selects a page at index.

SeS('SomeiOSPageIndicator').DoSelectPage(index)

Parameters:

Name Type Description
index number Index of the page.

Returns:

boolean: 'true' if success, 'false' otherwise.