Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions content/en-us/reference/engine/classes/UIPageLayout.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,13 @@ methods:
events:
- name: UIPageLayout.PageEnter
summary: |
Fires when a page comes into view, and is going to be rendered.
Fires when a page comes into view, has its visible property toggled on, and is going to be rendered. This will never fire if `GuiObject.ClipsDescendants` is set to false for its parent and may trigger multiple times depending on the animation used.

In order to listen to a page index changes, connect to `:GetPropertyChangedSignal("CurrentPage")` instead.
description: |
Fires when a page comes into view, and is going to be rendered.
Fires when a page comes into view, has its visible property toggled on, and is going to be rendered. This will never fire if `GuiObject.ClipsDescendants` is set to false for its parent and may trigger multiple times depending on the animation used.

In order to listen to a page index changes, connect to `:GetPropertyChangedSignal("CurrentPage")` instead.
code_samples: []
parameters:
- name: page
Expand All @@ -324,9 +328,13 @@ events:
- UI
- name: UIPageLayout.PageLeave
summary: |
Fires when a page leaves view, and will not be rendered.
Fires when a page leaves view, has its visible property toggled off, and is no longer going to be rendered. This will never fire if `GuiObject.ClipsDescendants` is set to false for its parent and may trigger multiple times depending on the animation used.

In order to listen to a page index changes, connect to `:GetPropertyChangedSignal("CurrentPage")` instead.
description: |
Fires when a page leaves view, and will not be rendered.
Fires when a page leaves view, has its visible property toggled off, and is no longer going to be rendered. This will never fire if `GuiObject.ClipsDescendants` is set to false for its parent and may trigger multiple times depending on the animation used.

In order to listen to a page index changes, connect to `:GetPropertyChangedSignal("CurrentPage")` instead.
code_samples: []
parameters:
- name: page
Expand Down
Loading