UIPageLayout

แสดงที่เลิกใช้งานแล้ว

*เนื้อหานี้จะพร้อมใช้งานในภาษาที่คุณเลือกในเร็วๆ นี้

Creates a paged viewing window, like the home screen of a mobile device. You can use a UIPageLayout by parenting it to a GuiObject. The UIPageLayout will then apply itself to all of its GuiObject siblings.

สรุป

คุณสมบัติ

  • อ่านพร้อมๆ กัน

    Whether or not to animate transitions between pages.

  • อ่านพร้อมๆ กัน

    Whether or not the page layout wraps around at the ends.

  • อ่านอย่างเดียว
    ไม่ซ้ำ
    อ่านพร้อมๆ กัน

    The page that is either currently being displayed or is the target of the current animation.

  • อ่านพร้อมๆ กัน

    The easing direction to use when performing an animation.

  • อ่านพร้อมๆ กัน

    The easing style to use when performing an animation.

  • อ่านพร้อมๆ กัน

    Controls the overrides of NextSelection{Up, Down, Left, Right}. Defaults to true.

  • อ่านพร้อมๆ กัน

    Determines the amount that pages are separated from each other by.

  • อ่านพร้อมๆ กัน

    Controls the use of scroll wheel, in case that it is intended for something else. Defaults to true.

  • อ่านพร้อมๆ กัน

    Controls touch scrolling, in case this is a non-interactive layout. Defaults to true.

  • อ่านพร้อมๆ กัน

    The length of the animation.

คุณสมบัติรับทอดมาจากUIGridStyleLayout

วิธีการ

อีเวนต์

คุณสมบัติ

Animated

อ่านพร้อมๆ กัน

Whether or not to animate transitions between pages.

Circular

อ่านพร้อมๆ กัน

Whether or not the page layout wraps around at the ends.

CurrentPage

อ่านอย่างเดียว
ไม่ซ้ำ
อ่านพร้อมๆ กัน

The page that is either currently being displayed or is the target of the current animation.

EasingDirection

อ่านพร้อมๆ กัน

The easing direction to use when performing an animation.

EasingStyle

อ่านพร้อมๆ กัน

The easing style to use when performing an animation.

GamepadInputEnabled

อ่านพร้อมๆ กัน

Controls the overrides of NextSelection{Up,Down,Left,Right}. Defaults to true.

Padding

อ่านพร้อมๆ กัน

Determines the amount that pages are separated from each other by. Can be set either using scale (Percentage of parent's size in the current direction) or offset (a static spacing value, similar to pixel size).

ScrollWheelInputEnabled

อ่านพร้อมๆ กัน

Controls the use of scroll wheel, in case that it is intended for something else. Defaults to true.

TouchInputEnabled

อ่านพร้อมๆ กัน

Controls touch scrolling, in case this is a non-interactive layout. Defaults to true.

TweenTime

อ่านพร้อมๆ กัน

The length of the animation.

วิธีการ

JumpTo

void

If the page is in the UIPageLayout, then it sets UIPageLayout.CurrentPage to it and animates to it. If the circular layout is enabled, it will take the shortest path to this page.

พารามิเตอร์

page: Instance

ส่งค่ากลับ

void

JumpToIndex

void

If the index is >= 0 and less than the size of the layout, this method acts like UIPageLayout:JumpTo(). If it's out of bounds and circular is set, it will animate the full distance between the in-bounds index of UIPageLayout.CurrentPage and the new index.

พารามิเตอร์

index: number

ส่งค่ากลับ

void

Next

void

Sets UIPageLayout.CurrentPage to the page after the current page and animates to it, or does nothing if there isn't a next page.


ส่งค่ากลับ

void

Previous

void

Sets UIPageLayout.CurrentPage to the page before the current page and animates to it, or does nothing if there isn't a previous page.


ส่งค่ากลับ

void

อีเวนต์

PageEnter

Fires when a page comes into view, and is going to be rendered.

พารามิเตอร์

page: Instance

PageLeave

Fires when a page leaves view, and will not be rendered.

พารามิเตอร์

page: Instance

Stopped

Fires when an animation to UIPageLayout.CurrentPage is completed without being canceled, and the view stops scrolling.

พารามิเตอร์

currentPage: Instance