Always snap to grid

UE3:UIAction_InsertPage (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
UT3 Object >> SequenceObject >> SequenceOp >> SequenceAction >> UIAction >> UIAction_TabControl >> UIAction_InsertPage
Package: 
Engine

Adds a new page to a tab control at the specified location.

Copyright 2007 Epic Games, Inc. All Rights Reserved

Properties[edit]

Property group 'UIAction_InsertPage'[edit]

bFocusPage[edit]

Type: bool

Specifies whether the page should also be given focus once it's successfully added to the tab control.

Default value: True

InsertIndex[edit]

Type: int

The position [into the tab control's Pages array] to insert the new tab page. If not specified (value of INDEX_NONE), will be added to the end of the list.

Default value: -1

TabPageClass[edit]

Type: class<UITabPage>


Default value: Class'Engine.UITabPage'

Internal variables[edit]

PagePrefab[edit]

Type: UITabPage

Optional UIPrefab to use as the template for the new page. If specified, this will be used instead of the value of TabPageClass.

PageToInsert[edit]

Type: UITabPage

Reference to an existing page instance. If non-NULL, this page will be inserted rather than creating a new one.

Default values[edit]

Property Value
ObjName "Add Page"
VariableLinks[3]
Member Value
bHidden True
ExpectedType Class'Engine.SeqVar_Int'
LinkDesc "Position"
MaxVars 255
MinVars 1
PropertyName 'InsertIndex'
VariableLinks[4]
Member Value
bHidden True
ExpectedType Class'Engine.SeqVar_Object'
LinkDesc "Page To Insert"
MaxVars 255
MinVars 1
PropertyName 'PageToInsert'
VariableLinks[5]
Member Value
bHidden True
ExpectedType Class'Engine.SeqVar_Object'
LinkDesc "Page Prefab"
MaxVars 255
MinVars 1
PropertyName 'PagePrefab'
VariableLinks[6]
Member Value
bWriteable True
ExpectedType Class'Engine.SeqVar_Object'
LinkDesc "New Page"
MaxVars 255
MinVars 1

Events[edit]

Activated[edit]

event Activated ()

Overrides: SequenceOp.Activated

Called when this event is activated. Performs the logic for this action.