SteamVR/Environments/Panorama Javascript API
< SteamVR | Environments
Jump to navigation
Jump to search
This is the client-side Javascript API documentation for the Panorama UI system in SteamVR Home. The documentation can be dumped using the 'cl_panorama_script_help_2' console command.


Static Classes
These classes each have have a global accessor variable.
$
Global functions.
Accessor variable: $
Function | Signature | Description |
---|---|---|
Msg | Msg( js_raw_args js_raw_args_1 )
|
Log a message |
DispatchEvent | DispatchEvent( js_raw_args js_raw_args_1 )
|
Dispatch an event |
DispatchEventAsync | DispatchEventAsync( js_raw_args js_raw_args_1 )
|
Dispatch an event to occur later |
RegisterEventHandler | RegisterEventHandler( js_raw_args js_raw_args_1 )
|
Register an event handler |
RegisterForUnhandledEvent | RegisterForUnhandledEvent( js_raw_args js_raw_args_1 )
|
Register a handler for an event that is not otherwise handled |
UnregisterForUnhandledEvent | UnregisterForUnhandledEvent( js_raw_args js_raw_args_1 )
|
Remove an unhandled event handler |
FindChildInContext | FindChildInContext( js_raw_args js_raw_args_1 )
|
Find an element |
AsyncWebRequest | AsyncWebRequest( js_raw_args js_raw_args_1 )
|
Make a web request |
CreatePanel | CreatePanel( js_raw_args js_raw_args_1 )
|
Create a new panel |
Localize | Localize( js_raw_args js_raw_args_1 )
|
Localize a string |
Language | Language( js_raw_args js_raw_args_1 )
|
Get the current language |
Schedule | Schedule( js_raw_args js_raw_args_1 )
|
Schedule a function to be called later |
CancelScheduled | CancelScheduled( js_raw_args js_raw_args_1 )
|
Cancelse a scheduled function |
GetContextPanel | GetContextPanel( js_raw_args js_raw_args_1 )
|
Get the current panel context |
RegisterKeyBind | RegisterKeyBind( js_raw_args js_raw_args_1 )
|
Register a key binding |
Each | Each( js_raw_args js_raw_args_1 )
|
Call a function on each given item |
CPanoramaScript_GameEvents
Interface for Game events
Accessor variable: GameEvents
Function | Signature | Description |
---|---|---|
Subscribe | "GameEvents".Subscribe( cstring pEventName, js_value funcVal )
|
Subscribe to a game event |
Unsubscribe | "GameEvents".Unsubscribe( integer nCallbackHandle )
|
Unsubscribe from a game event |
SendCustomGameEventToServer | "GameEvents".SendCustomGameEventToServer( cstring pEventName, js_object jsObject )
|
Send a custom game event to the server |
SendCustomGameEventToAllClients | "GameEvents".SendCustomGameEventToAllClients( cstring pEventName, js_object jsObject )
|
Send a custom game event to the server, which will send it to all clients |
SendCustomGameEventToClient | "GameEvents".SendCustomGameEventToClient( cstring pEventName, integer playerIndex, js_object jsObject )
|
Send a custom game event to the server, which will then send it to one client |
SendEventClientSide | "GameEvents".SendEventClientSide( cstring pEventName, js_object jsObject )
|
Send a client-side event using gameeventmanager (only useful for a few specific events) |
CPanoramaScript_CustomNetTables
Interface for Nettables
Accessor variable: CustomNetTables
Function | Signature | Description |
---|---|---|
GetTableValue | "CustomNetTables".GetTableValue( cstring pTableName, cstring pKeyName )
|
Get a key from a custom net table |
GetAllTableValues | "CustomNetTables".GetAllTableValues( cstring pTableName )
|
Get all values from a custom net table |
SubscribeNetTableListener | "CustomNetTables".SubscribeNetTableListener( js_raw_args args )
|
Register a callback when a particular custom net table changes |
UnsubscribeNetTableListener | "CustomNetTables".UnsubscribeNetTableListener( integer nCallbackHandle )
|
Unsubscribe from a game event |
CPanoramaScript_SteamUGC
Interface for Steam user generated content.
Accessor variable: SteamUGC
Function | Signature | Description |
---|---|---|
SubscribeItem | "SteamUGC".SubscribeItem( cstring pPublishedFileID, js_value funcVal )
|
Subscribe to a piece of UGC |
UnsubscribeItem | "SteamUGC".UnsubscribeItem( cstring pPublishedFileID, js_value funcVal )
|
Unsubscribe from a piece of UGC |
GetSubscriptionInfo | "SteamUGC".GetSubscriptionInfo( cstring pPublishedFileID )
|
Get a key from a custom net table |
SetUserItemVote | "SteamUGC".SetUserItemVote( cstring pPublishedFileID, boolean bVoteUp, js_value funcVal )
|
Vote on a piece of UGC |
GetUserItemVote | "SteamUGC".GetUserItemVote( cstring pPublishedFileID, js_value funcVal )
|
Get the user's vote on a piece of UGC |
AddToFavorites | "SteamUGC".AddToFavorites( cstring pPublishedFileID, js_value funcVal )
|
Add an item to the user's favorites list |
RemoveFromFavorites | "SteamUGC".RemoveFromFavorites( cstring pPublishedFileID, js_value funcVal )
|
Remove an item from the user's favorites list |
CreateQueryAllUGCRequest | "SteamUGC".CreateQueryAllUGCRequest( integer eQueryType, integer eMatchingeMatchingUGCTypeFileType, unsigned unPage )
|
Create a request to query Steam for all UGC |
CreateQueryUGCDetailsRequest | "SteamUGC".CreateQueryUGCDetailsRequest( js_array jsArray )
|
Create a request to query Steam for specific UGC |
AddRequiredTagToQuery | "SteamUGC".AddRequiredTagToQuery( integer handle, cstring pchTag )
|
Adds a required tag to the query |
AddExcludedTagToQuery | "SteamUGC".AddExcludedTagToQuery( integer handle, cstring pchTag )
|
Adds an excluded tag to the query |
ConfigureQuery | "SteamUGC".ConfigureQuery( integer handle, js_object jsObject )
|
Adds a required tag to the query |
SendUGCQuery | "SteamUGC".SendUGCQuery( integer handle, js_value funcVal )
|
Sends the prepared query |
RegisterDownloadItemResultCallback | "SteamUGC".RegisterDownloadItemResultCallback( cstring pPublishedFileID, js_value funcVal )
|
Register a callback to be called when the item is downloaded |
CPanoramaScript_SteamFriends
Accessor variable: SteamFriends
Function | Signature | Description |
---|---|---|
RequestPersonaName | "SteamFriends".RequestPersonaName( cstring pchSteamID, js_value funcVal )
|
Requests the user's persona name |
SetLargeAvatarImage | "SteamFriends".SetLargeAvatarImage( js_raw_args args )
|
Sets the avatar image on the image panel |
CPanoramaScript_SteamUtils
Accessor variable: SteamUtils
Function | Signature | Description |
---|---|---|
GetConnectedUniverse | "SteamUtils".GetConnectedUniverse()
|
Returns the connected universe |
GetAppID | "SteamUtils".GetAppID()
|
Returns the appid of the current app |
CPanoramaScript_VRUtils
Accessor variable: VRUtils
Function | Signature | Description |
---|---|---|
GetVRAppPropertyData | "VRUtils".GetVRAppPropertyData( unsigned nAppID )
|
Get application properties for a VR app with the specified appID |
LaunchSteamApp | "VRUtils".LaunchSteamApp( unsigned nAppID )
|
Launches a Steam application using OpenVR. |
CPanoramaScript_SteamVRHome
Accessor variable: SteamVRHome
Function | Signature | Description |
---|---|---|
SpawnImagePanel | "SteamVRHome".SpawnImagePanel( cstring pPublishedFileID, integer nImageWidth, integer nImageHeight )
|
Creates an in-world image panel entity. |
UI Element Classes
Panel
Function | Signature | Description |
---|---|---|
visible | Panel.visible( boolean boolean_1 )
|
|
enabled | Panel.enabled( boolean boolean_1 )
|
|
checked | Panel.checked( boolean boolean_1 )
|
|
defaultfocus | Panel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | Panel.inputnamespace( cstring cstring_1 )
|
|
hittest | Panel.hittest( boolean boolean_1 )
|
|
hittestchildren | Panel.hittestchildren( boolean boolean_1 )
|
|
tabindex | Panel.tabindex( float float_1 )
|
|
selectionpos_x | Panel.selectionpos_x( float float_1 )
|
|
selectionpos_y | Panel.selectionpos_y( float float_1 )
|
|
id | Panel.id()
|
|
layoutfile | Panel.layoutfile()
|
|
contentwidth | Panel.contentwidth()
|
|
contentheight | Panel.contentheight()
|
|
desiredlayoutwidth | Panel.desiredlayoutwidth()
|
|
desiredlayoutheight | Panel.desiredlayoutheight()
|
|
actuallayoutwidth | Panel.actuallayoutwidth()
|
|
actuallayoutheight | Panel.actuallayoutheight()
|
|
actualxoffset | Panel.actualxoffset()
|
|
actualyoffset | Panel.actualyoffset()
|
|
scrolloffset_y | Panel.scrolloffset_y()
|
|
scrolloffset_x | Panel.scrolloffset_x()
|
|
actualuiscale_y | Panel.actualuiscale_y()
|
|
actualuiscale_x | Panel.actualuiscale_x()
|
|
style | Panel.style()
|
|
AddClass | Panel.AddClass( cstring cstring_1 )
|
|
RemoveClass | Panel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | Panel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | Panel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | Panel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | Panel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | Panel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | Panel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | Panel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | Panel.IsDraggable()
|
|
GetChildCount | Panel.GetChildCount()
|
|
GetChild | Panel.GetChild( integer integer_1 )
|
|
GetChildIndex | Panel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | Panel.Children()
|
|
FindChildrenWithClassTraverse | Panel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | Panel.GetParent()
|
|
SetParent | Panel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | Panel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | Panel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | Panel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | Panel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | Panel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | Panel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | Panel.GetPositionWithinWindow()
|
|
ApplyStyles | Panel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | Panel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | Panel.DeleteAsync( float float_1 )
|
|
BIsTransparent | Panel.BIsTransparent()
|
|
BAcceptsInput | Panel.BAcceptsInput()
|
|
BAcceptsFocus | Panel.BAcceptsFocus()
|
|
SetFocus | Panel.SetFocus()
|
|
UpdateFocusInContext | Panel.UpdateFocusInContext()
|
|
BHasHoverStyle | Panel.BHasHoverStyle()
|
|
SetAcceptsFocus | Panel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | Panel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | Panel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | Panel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | Panel.BScrollParentToFitWhenFocused()
|
|
IsSelected | Panel.IsSelected()
|
|
BHasDescendantKeyFocus | Panel.BHasDescendantKeyFocus()
|
|
BLoadLayout | Panel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | Panel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | Panel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | Panel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | Panel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | Panel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | Panel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | Panel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | Panel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | Panel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | Panel.ScrollToTop()
|
|
ScrollToBottom | Panel.ScrollToBottom()
|
|
ScrollToLeftEdge | Panel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | Panel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | Panel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | Panel.BCanSeeInParentScroll()
|
|
GetAttributeInt | Panel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | Panel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | Panel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | Panel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | Panel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | Panel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | Panel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | Panel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | Panel.BReadyForDisplay()
|
|
SetReadyForDisplay | Panel.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | Panel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | Panel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | Panel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | Panel.paneltype()
|
Image
Function | Signature | Description |
---|---|---|
visible | Image.visible( boolean boolean_1 )
|
|
enabled | Image.enabled( boolean boolean_1 )
|
|
checked | Image.checked( boolean boolean_1 )
|
|
defaultfocus | Image.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | Image.inputnamespace( cstring cstring_1 )
|
|
hittest | Image.hittest( boolean boolean_1 )
|
|
hittestchildren | Image.hittestchildren( boolean boolean_1 )
|
|
tabindex | Image.tabindex( float float_1 )
|
|
selectionpos_x | Image.selectionpos_x( float float_1 )
|
|
selectionpos_y | Image.selectionpos_y( float float_1 )
|
|
id | Image.id()
|
|
layoutfile | Image.layoutfile()
|
|
contentwidth | Image.contentwidth()
|
|
contentheight | Image.contentheight()
|
|
desiredlayoutwidth | Image.desiredlayoutwidth()
|
|
desiredlayoutheight | Image.desiredlayoutheight()
|
|
actuallayoutwidth | Image.actuallayoutwidth()
|
|
actuallayoutheight | Image.actuallayoutheight()
|
|
actualxoffset | Image.actualxoffset()
|
|
actualyoffset | Image.actualyoffset()
|
|
scrolloffset_y | Image.scrolloffset_y()
|
|
scrolloffset_x | Image.scrolloffset_x()
|
|
actualuiscale_y | Image.actualuiscale_y()
|
|
actualuiscale_x | Image.actualuiscale_x()
|
|
style | Image.style()
|
|
AddClass | Image.AddClass( cstring cstring_1 )
|
|
RemoveClass | Image.RemoveClass( cstring cstring_1 )
|
|
BHasClass | Image.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | Image.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | Image.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | Image.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | Image.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | Image.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | Image.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | Image.IsDraggable()
|
|
GetChildCount | Image.GetChildCount()
|
|
GetChild | Image.GetChild( integer integer_1 )
|
|
GetChildIndex | Image.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | Image.Children()
|
|
FindChildrenWithClassTraverse | Image.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | Image.GetParent()
|
|
SetParent | Image.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | Image.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | Image.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | Image.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | Image.RemoveAndDeleteChildren()
|
|
MoveChildBefore | Image.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | Image.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | Image.GetPositionWithinWindow()
|
|
ApplyStyles | Image.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | Image.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | Image.DeleteAsync( float float_1 )
|
|
BIsTransparent | Image.BIsTransparent()
|
|
BAcceptsInput | Image.BAcceptsInput()
|
|
BAcceptsFocus | Image.BAcceptsFocus()
|
|
SetFocus | Image.SetFocus()
|
|
UpdateFocusInContext | Image.UpdateFocusInContext()
|
|
BHasHoverStyle | Image.BHasHoverStyle()
|
|
SetAcceptsFocus | Image.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | Image.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | Image.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | Image.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | Image.BScrollParentToFitWhenFocused()
|
|
IsSelected | Image.IsSelected()
|
|
BHasDescendantKeyFocus | Image.BHasDescendantKeyFocus()
|
|
BLoadLayout | Image.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | Image.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | Image.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | Image.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | Image.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | Image.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | Image.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | Image.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | Image.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | Image.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | Image.ScrollToTop()
|
|
ScrollToBottom | Image.ScrollToBottom()
|
|
ScrollToLeftEdge | Image.ScrollToLeftEdge()
|
|
ScrollToRightEdge | Image.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | Image.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | Image.BCanSeeInParentScroll()
|
|
GetAttributeInt | Image.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | Image.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | Image.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | Image.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | Image.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | Image.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | Image.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | Image.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | Image.BReadyForDisplay()
|
|
SetReadyForDisplay | Image.SetReadyForDisplay( boolean boolean_1 )
|
|
SetImage | Image.SetImage( cstring cstring_1 )
|
|
SetScaling | Image.SetScaling( cstring cstring_1 )
|
|
SetPanelEvent | Image.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | Image.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | Image.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | Image.paneltype()
|
ClientUIDialogPanel
Function | Signature | Description |
---|---|---|
visible | ClientUIDialogPanel.visible( boolean boolean_1 )
|
|
enabled | ClientUIDialogPanel.enabled( boolean boolean_1 )
|
|
checked | ClientUIDialogPanel.checked( boolean boolean_1 )
|
|
defaultfocus | ClientUIDialogPanel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | ClientUIDialogPanel.inputnamespace( cstring cstring_1 )
|
|
hittest | ClientUIDialogPanel.hittest( boolean boolean_1 )
|
|
hittestchildren | ClientUIDialogPanel.hittestchildren( boolean boolean_1 )
|
|
tabindex | ClientUIDialogPanel.tabindex( float float_1 )
|
|
selectionpos_x | ClientUIDialogPanel.selectionpos_x( float float_1 )
|
|
selectionpos_y | ClientUIDialogPanel.selectionpos_y( float float_1 )
|
|
id | ClientUIDialogPanel.id()
|
|
layoutfile | ClientUIDialogPanel.layoutfile()
|
|
contentwidth | ClientUIDialogPanel.contentwidth()
|
|
contentheight | ClientUIDialogPanel.contentheight()
|
|
desiredlayoutwidth | ClientUIDialogPanel.desiredlayoutwidth()
|
|
desiredlayoutheight | ClientUIDialogPanel.desiredlayoutheight()
|
|
actuallayoutwidth | ClientUIDialogPanel.actuallayoutwidth()
|
|
actuallayoutheight | ClientUIDialogPanel.actuallayoutheight()
|
|
actualxoffset | ClientUIDialogPanel.actualxoffset()
|
|
actualyoffset | ClientUIDialogPanel.actualyoffset()
|
|
scrolloffset_y | ClientUIDialogPanel.scrolloffset_y()
|
|
scrolloffset_x | ClientUIDialogPanel.scrolloffset_x()
|
|
actualuiscale_y | ClientUIDialogPanel.actualuiscale_y()
|
|
actualuiscale_x | ClientUIDialogPanel.actualuiscale_x()
|
|
style | ClientUIDialogPanel.style()
|
|
AddClass | ClientUIDialogPanel.AddClass( cstring cstring_1 )
|
|
RemoveClass | ClientUIDialogPanel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | ClientUIDialogPanel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | ClientUIDialogPanel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | ClientUIDialogPanel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | ClientUIDialogPanel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | ClientUIDialogPanel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | ClientUIDialogPanel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | ClientUIDialogPanel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | ClientUIDialogPanel.IsDraggable()
|
|
GetChildCount | ClientUIDialogPanel.GetChildCount()
|
|
GetChild | ClientUIDialogPanel.GetChild( integer integer_1 )
|
|
GetChildIndex | ClientUIDialogPanel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | ClientUIDialogPanel.Children()
|
|
FindChildrenWithClassTraverse | ClientUIDialogPanel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | ClientUIDialogPanel.GetParent()
|
|
SetParent | ClientUIDialogPanel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | ClientUIDialogPanel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | ClientUIDialogPanel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | ClientUIDialogPanel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | ClientUIDialogPanel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | ClientUIDialogPanel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | ClientUIDialogPanel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | ClientUIDialogPanel.GetPositionWithinWindow()
|
|
ApplyStyles | ClientUIDialogPanel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | ClientUIDialogPanel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | ClientUIDialogPanel.DeleteAsync( float float_1 )
|
|
BIsTransparent | ClientUIDialogPanel.BIsTransparent()
|
|
BAcceptsInput | ClientUIDialogPanel.BAcceptsInput()
|
|
BAcceptsFocus | ClientUIDialogPanel.BAcceptsFocus()
|
|
SetFocus | ClientUIDialogPanel.SetFocus()
|
|
UpdateFocusInContext | ClientUIDialogPanel.UpdateFocusInContext()
|
|
BHasHoverStyle | ClientUIDialogPanel.BHasHoverStyle()
|
|
SetAcceptsFocus | ClientUIDialogPanel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | ClientUIDialogPanel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | ClientUIDialogPanel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | ClientUIDialogPanel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | ClientUIDialogPanel.BScrollParentToFitWhenFocused()
|
|
IsSelected | ClientUIDialogPanel.IsSelected()
|
|
BHasDescendantKeyFocus | ClientUIDialogPanel.BHasDescendantKeyFocus()
|
|
BLoadLayout | ClientUIDialogPanel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | ClientUIDialogPanel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | ClientUIDialogPanel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | ClientUIDialogPanel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | ClientUIDialogPanel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | ClientUIDialogPanel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | ClientUIDialogPanel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | ClientUIDialogPanel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | ClientUIDialogPanel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | ClientUIDialogPanel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | ClientUIDialogPanel.ScrollToTop()
|
|
ScrollToBottom | ClientUIDialogPanel.ScrollToBottom()
|
|
ScrollToLeftEdge | ClientUIDialogPanel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | ClientUIDialogPanel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | ClientUIDialogPanel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | ClientUIDialogPanel.BCanSeeInParentScroll()
|
|
GetAttributeInt | ClientUIDialogPanel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | ClientUIDialogPanel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | ClientUIDialogPanel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | ClientUIDialogPanel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | ClientUIDialogPanel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | ClientUIDialogPanel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | ClientUIDialogPanel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | ClientUIDialogPanel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | ClientUIDialogPanel.BReadyForDisplay()
|
|
SetReadyForDisplay | ClientUIDialogPanel.SetReadyForDisplay( boolean boolean_1 )
|
|
GetOwnerEntityID | ClientUIDialogPanel.GetOwnerEntityID()
|
|
SetPanelEvent | ClientUIDialogPanel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | ClientUIDialogPanel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | ClientUIDialogPanel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | ClientUIDialogPanel.paneltype()
|
Button
Function | Signature | Description |
---|---|---|
visible | Button.visible( boolean boolean_1 )
|
|
enabled | Button.enabled( boolean boolean_1 )
|
|
checked | Button.checked( boolean boolean_1 )
|
|
defaultfocus | Button.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | Button.inputnamespace( cstring cstring_1 )
|
|
hittest | Button.hittest( boolean boolean_1 )
|
|
hittestchildren | Button.hittestchildren( boolean boolean_1 )
|
|
tabindex | Button.tabindex( float float_1 )
|
|
selectionpos_x | Button.selectionpos_x( float float_1 )
|
|
selectionpos_y | Button.selectionpos_y( float float_1 )
|
|
id | Button.id()
|
|
layoutfile | Button.layoutfile()
|
|
contentwidth | Button.contentwidth()
|
|
contentheight | Button.contentheight()
|
|
desiredlayoutwidth | Button.desiredlayoutwidth()
|
|
desiredlayoutheight | Button.desiredlayoutheight()
|
|
actuallayoutwidth | Button.actuallayoutwidth()
|
|
actuallayoutheight | Button.actuallayoutheight()
|
|
actualxoffset | Button.actualxoffset()
|
|
actualyoffset | Button.actualyoffset()
|
|
scrolloffset_y | Button.scrolloffset_y()
|
|
scrolloffset_x | Button.scrolloffset_x()
|
|
actualuiscale_y | Button.actualuiscale_y()
|
|
actualuiscale_x | Button.actualuiscale_x()
|
|
style | Button.style()
|
|
AddClass | Button.AddClass( cstring cstring_1 )
|
|
RemoveClass | Button.RemoveClass( cstring cstring_1 )
|
|
BHasClass | Button.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | Button.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | Button.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | Button.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | Button.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | Button.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | Button.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | Button.IsDraggable()
|
|
GetChildCount | Button.GetChildCount()
|
|
GetChild | Button.GetChild( integer integer_1 )
|
|
GetChildIndex | Button.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | Button.Children()
|
|
FindChildrenWithClassTraverse | Button.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | Button.GetParent()
|
|
SetParent | Button.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | Button.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | Button.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | Button.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | Button.RemoveAndDeleteChildren()
|
|
MoveChildBefore | Button.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | Button.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | Button.GetPositionWithinWindow()
|
|
ApplyStyles | Button.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | Button.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | Button.DeleteAsync( float float_1 )
|
|
BIsTransparent | Button.BIsTransparent()
|
|
BAcceptsInput | Button.BAcceptsInput()
|
|
BAcceptsFocus | Button.BAcceptsFocus()
|
|
SetFocus | Button.SetFocus()
|
|
UpdateFocusInContext | Button.UpdateFocusInContext()
|
|
BHasHoverStyle | Button.BHasHoverStyle()
|
|
SetAcceptsFocus | Button.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | Button.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | Button.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | Button.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | Button.BScrollParentToFitWhenFocused()
|
|
IsSelected | Button.IsSelected()
|
|
BHasDescendantKeyFocus | Button.BHasDescendantKeyFocus()
|
|
BLoadLayout | Button.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | Button.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | Button.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | Button.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | Button.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | Button.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | Button.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | Button.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | Button.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | Button.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | Button.ScrollToTop()
|
|
ScrollToBottom | Button.ScrollToBottom()
|
|
ScrollToLeftEdge | Button.ScrollToLeftEdge()
|
|
ScrollToRightEdge | Button.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | Button.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | Button.BCanSeeInParentScroll()
|
|
GetAttributeInt | Button.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | Button.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | Button.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | Button.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | Button.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | Button.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | Button.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | Button.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | Button.BReadyForDisplay()
|
|
SetReadyForDisplay | Button.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | Button.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | Button.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | Button.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | Button.paneltype()
|
FriendsItem
Function | Signature | Description |
---|---|---|
visible | FriendsItem.visible( boolean boolean_1 )
|
|
enabled | FriendsItem.enabled( boolean boolean_1 )
|
|
checked | FriendsItem.checked( boolean boolean_1 )
|
|
defaultfocus | FriendsItem.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | FriendsItem.inputnamespace( cstring cstring_1 )
|
|
hittest | FriendsItem.hittest( boolean boolean_1 )
|
|
hittestchildren | FriendsItem.hittestchildren( boolean boolean_1 )
|
|
tabindex | FriendsItem.tabindex( float float_1 )
|
|
selectionpos_x | FriendsItem.selectionpos_x( float float_1 )
|
|
selectionpos_y | FriendsItem.selectionpos_y( float float_1 )
|
|
id | FriendsItem.id()
|
|
layoutfile | FriendsItem.layoutfile()
|
|
contentwidth | FriendsItem.contentwidth()
|
|
contentheight | FriendsItem.contentheight()
|
|
desiredlayoutwidth | FriendsItem.desiredlayoutwidth()
|
|
desiredlayoutheight | FriendsItem.desiredlayoutheight()
|
|
actuallayoutwidth | FriendsItem.actuallayoutwidth()
|
|
actuallayoutheight | FriendsItem.actuallayoutheight()
|
|
actualxoffset | FriendsItem.actualxoffset()
|
|
actualyoffset | FriendsItem.actualyoffset()
|
|
scrolloffset_y | FriendsItem.scrolloffset_y()
|
|
scrolloffset_x | FriendsItem.scrolloffset_x()
|
|
actualuiscale_y | FriendsItem.actualuiscale_y()
|
|
actualuiscale_x | FriendsItem.actualuiscale_x()
|
|
style | FriendsItem.style()
|
|
AddClass | FriendsItem.AddClass( cstring cstring_1 )
|
|
RemoveClass | FriendsItem.RemoveClass( cstring cstring_1 )
|
|
BHasClass | FriendsItem.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | FriendsItem.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | FriendsItem.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | FriendsItem.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | FriendsItem.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | FriendsItem.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | FriendsItem.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | FriendsItem.IsDraggable()
|
|
GetChildCount | FriendsItem.GetChildCount()
|
|
GetChild | FriendsItem.GetChild( integer integer_1 )
|
|
GetChildIndex | FriendsItem.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | FriendsItem.Children()
|
|
FindChildrenWithClassTraverse | FriendsItem.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | FriendsItem.GetParent()
|
|
SetParent | FriendsItem.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | FriendsItem.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | FriendsItem.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | FriendsItem.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | FriendsItem.RemoveAndDeleteChildren()
|
|
MoveChildBefore | FriendsItem.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | FriendsItem.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | FriendsItem.GetPositionWithinWindow()
|
|
ApplyStyles | FriendsItem.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | FriendsItem.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | FriendsItem.DeleteAsync( float float_1 )
|
|
BIsTransparent | FriendsItem.BIsTransparent()
|
|
BAcceptsInput | FriendsItem.BAcceptsInput()
|
|
BAcceptsFocus | FriendsItem.BAcceptsFocus()
|
|
SetFocus | FriendsItem.SetFocus()
|
|
UpdateFocusInContext | FriendsItem.UpdateFocusInContext()
|
|
BHasHoverStyle | FriendsItem.BHasHoverStyle()
|
|
SetAcceptsFocus | FriendsItem.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | FriendsItem.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | FriendsItem.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | FriendsItem.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | FriendsItem.BScrollParentToFitWhenFocused()
|
|
IsSelected | FriendsItem.IsSelected()
|
|
BHasDescendantKeyFocus | FriendsItem.BHasDescendantKeyFocus()
|
|
BLoadLayout | FriendsItem.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | FriendsItem.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | FriendsItem.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | FriendsItem.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | FriendsItem.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | FriendsItem.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | FriendsItem.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | FriendsItem.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | FriendsItem.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | FriendsItem.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | FriendsItem.ScrollToTop()
|
|
ScrollToBottom | FriendsItem.ScrollToBottom()
|
|
ScrollToLeftEdge | FriendsItem.ScrollToLeftEdge()
|
|
ScrollToRightEdge | FriendsItem.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | FriendsItem.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | FriendsItem.BCanSeeInParentScroll()
|
|
GetAttributeInt | FriendsItem.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | FriendsItem.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | FriendsItem.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | FriendsItem.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | FriendsItem.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | FriendsItem.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | FriendsItem.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | FriendsItem.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | FriendsItem.BReadyForDisplay()
|
|
SetReadyForDisplay | FriendsItem.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | FriendsItem.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | FriendsItem.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | FriendsItem.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | FriendsItem.paneltype()
|
AvatarCustomizationItem
Function | Signature | Description |
---|---|---|
visible | AvatarCustomizationItem.visible( boolean boolean_1 )
|
|
enabled | AvatarCustomizationItem.enabled( boolean boolean_1 )
|
|
checked | AvatarCustomizationItem.checked( boolean boolean_1 )
|
|
defaultfocus | AvatarCustomizationItem.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | AvatarCustomizationItem.inputnamespace( cstring cstring_1 )
|
|
hittest | AvatarCustomizationItem.hittest( boolean boolean_1 )
|
|
hittestchildren | AvatarCustomizationItem.hittestchildren( boolean boolean_1 )
|
|
tabindex | AvatarCustomizationItem.tabindex( float float_1 )
|
|
selectionpos_x | AvatarCustomizationItem.selectionpos_x( float float_1 )
|
|
selectionpos_y | AvatarCustomizationItem.selectionpos_y( float float_1 )
|
|
id | AvatarCustomizationItem.id()
|
|
layoutfile | AvatarCustomizationItem.layoutfile()
|
|
contentwidth | AvatarCustomizationItem.contentwidth()
|
|
contentheight | AvatarCustomizationItem.contentheight()
|
|
desiredlayoutwidth | AvatarCustomizationItem.desiredlayoutwidth()
|
|
desiredlayoutheight | AvatarCustomizationItem.desiredlayoutheight()
|
|
actuallayoutwidth | AvatarCustomizationItem.actuallayoutwidth()
|
|
actuallayoutheight | AvatarCustomizationItem.actuallayoutheight()
|
|
actualxoffset | AvatarCustomizationItem.actualxoffset()
|
|
actualyoffset | AvatarCustomizationItem.actualyoffset()
|
|
scrolloffset_y | AvatarCustomizationItem.scrolloffset_y()
|
|
scrolloffset_x | AvatarCustomizationItem.scrolloffset_x()
|
|
actualuiscale_y | AvatarCustomizationItem.actualuiscale_y()
|
|
actualuiscale_x | AvatarCustomizationItem.actualuiscale_x()
|
|
style | AvatarCustomizationItem.style()
|
|
AddClass | AvatarCustomizationItem.AddClass( cstring cstring_1 )
|
|
RemoveClass | AvatarCustomizationItem.RemoveClass( cstring cstring_1 )
|
|
BHasClass | AvatarCustomizationItem.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | AvatarCustomizationItem.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | AvatarCustomizationItem.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | AvatarCustomizationItem.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | AvatarCustomizationItem.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | AvatarCustomizationItem.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | AvatarCustomizationItem.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | AvatarCustomizationItem.IsDraggable()
|
|
GetChildCount | AvatarCustomizationItem.GetChildCount()
|
|
GetChild | AvatarCustomizationItem.GetChild( integer integer_1 )
|
|
GetChildIndex | AvatarCustomizationItem.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | AvatarCustomizationItem.Children()
|
|
FindChildrenWithClassTraverse | AvatarCustomizationItem.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | AvatarCustomizationItem.GetParent()
|
|
SetParent | AvatarCustomizationItem.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | AvatarCustomizationItem.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | AvatarCustomizationItem.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | AvatarCustomizationItem.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | AvatarCustomizationItem.RemoveAndDeleteChildren()
|
|
MoveChildBefore | AvatarCustomizationItem.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | AvatarCustomizationItem.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | AvatarCustomizationItem.GetPositionWithinWindow()
|
|
ApplyStyles | AvatarCustomizationItem.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | AvatarCustomizationItem.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | AvatarCustomizationItem.DeleteAsync( float float_1 )
|
|
BIsTransparent | AvatarCustomizationItem.BIsTransparent()
|
|
BAcceptsInput | AvatarCustomizationItem.BAcceptsInput()
|
|
BAcceptsFocus | AvatarCustomizationItem.BAcceptsFocus()
|
|
SetFocus | AvatarCustomizationItem.SetFocus()
|
|
UpdateFocusInContext | AvatarCustomizationItem.UpdateFocusInContext()
|
|
BHasHoverStyle | AvatarCustomizationItem.BHasHoverStyle()
|
|
SetAcceptsFocus | AvatarCustomizationItem.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | AvatarCustomizationItem.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | AvatarCustomizationItem.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | AvatarCustomizationItem.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | AvatarCustomizationItem.BScrollParentToFitWhenFocused()
|
|
IsSelected | AvatarCustomizationItem.IsSelected()
|
|
BHasDescendantKeyFocus | AvatarCustomizationItem.BHasDescendantKeyFocus()
|
|
BLoadLayout | AvatarCustomizationItem.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | AvatarCustomizationItem.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | AvatarCustomizationItem.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | AvatarCustomizationItem.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | AvatarCustomizationItem.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | AvatarCustomizationItem.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | AvatarCustomizationItem.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | AvatarCustomizationItem.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | AvatarCustomizationItem.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | AvatarCustomizationItem.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | AvatarCustomizationItem.ScrollToTop()
|
|
ScrollToBottom | AvatarCustomizationItem.ScrollToBottom()
|
|
ScrollToLeftEdge | AvatarCustomizationItem.ScrollToLeftEdge()
|
|
ScrollToRightEdge | AvatarCustomizationItem.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | AvatarCustomizationItem.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | AvatarCustomizationItem.BCanSeeInParentScroll()
|
|
GetAttributeInt | AvatarCustomizationItem.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | AvatarCustomizationItem.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | AvatarCustomizationItem.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | AvatarCustomizationItem.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | AvatarCustomizationItem.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | AvatarCustomizationItem.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | AvatarCustomizationItem.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | AvatarCustomizationItem.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | AvatarCustomizationItem.BReadyForDisplay()
|
|
SetReadyForDisplay | AvatarCustomizationItem.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | AvatarCustomizationItem.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | AvatarCustomizationItem.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | AvatarCustomizationItem.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | AvatarCustomizationItem.paneltype()
|
ContentBrowserItem
Function | Signature | Description |
---|---|---|
visible | ContentBrowserItem.visible( boolean boolean_1 )
|
|
enabled | ContentBrowserItem.enabled( boolean boolean_1 )
|
|
checked | ContentBrowserItem.checked( boolean boolean_1 )
|
|
defaultfocus | ContentBrowserItem.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | ContentBrowserItem.inputnamespace( cstring cstring_1 )
|
|
hittest | ContentBrowserItem.hittest( boolean boolean_1 )
|
|
hittestchildren | ContentBrowserItem.hittestchildren( boolean boolean_1 )
|
|
tabindex | ContentBrowserItem.tabindex( float float_1 )
|
|
selectionpos_x | ContentBrowserItem.selectionpos_x( float float_1 )
|
|
selectionpos_y | ContentBrowserItem.selectionpos_y( float float_1 )
|
|
id | ContentBrowserItem.id()
|
|
layoutfile | ContentBrowserItem.layoutfile()
|
|
contentwidth | ContentBrowserItem.contentwidth()
|
|
contentheight | ContentBrowserItem.contentheight()
|
|
desiredlayoutwidth | ContentBrowserItem.desiredlayoutwidth()
|
|
desiredlayoutheight | ContentBrowserItem.desiredlayoutheight()
|
|
actuallayoutwidth | ContentBrowserItem.actuallayoutwidth()
|
|
actuallayoutheight | ContentBrowserItem.actuallayoutheight()
|
|
actualxoffset | ContentBrowserItem.actualxoffset()
|
|
actualyoffset | ContentBrowserItem.actualyoffset()
|
|
scrolloffset_y | ContentBrowserItem.scrolloffset_y()
|
|
scrolloffset_x | ContentBrowserItem.scrolloffset_x()
|
|
actualuiscale_y | ContentBrowserItem.actualuiscale_y()
|
|
actualuiscale_x | ContentBrowserItem.actualuiscale_x()
|
|
style | ContentBrowserItem.style()
|
|
AddClass | ContentBrowserItem.AddClass( cstring cstring_1 )
|
|
RemoveClass | ContentBrowserItem.RemoveClass( cstring cstring_1 )
|
|
BHasClass | ContentBrowserItem.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | ContentBrowserItem.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | ContentBrowserItem.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | ContentBrowserItem.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | ContentBrowserItem.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | ContentBrowserItem.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | ContentBrowserItem.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | ContentBrowserItem.IsDraggable()
|
|
GetChildCount | ContentBrowserItem.GetChildCount()
|
|
GetChild | ContentBrowserItem.GetChild( integer integer_1 )
|
|
GetChildIndex | ContentBrowserItem.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | ContentBrowserItem.Children()
|
|
FindChildrenWithClassTraverse | ContentBrowserItem.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | ContentBrowserItem.GetParent()
|
|
SetParent | ContentBrowserItem.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | ContentBrowserItem.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | ContentBrowserItem.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | ContentBrowserItem.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | ContentBrowserItem.RemoveAndDeleteChildren()
|
|
MoveChildBefore | ContentBrowserItem.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | ContentBrowserItem.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | ContentBrowserItem.GetPositionWithinWindow()
|
|
ApplyStyles | ContentBrowserItem.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | ContentBrowserItem.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | ContentBrowserItem.DeleteAsync( float float_1 )
|
|
BIsTransparent | ContentBrowserItem.BIsTransparent()
|
|
BAcceptsInput | ContentBrowserItem.BAcceptsInput()
|
|
BAcceptsFocus | ContentBrowserItem.BAcceptsFocus()
|
|
SetFocus | ContentBrowserItem.SetFocus()
|
|
UpdateFocusInContext | ContentBrowserItem.UpdateFocusInContext()
|
|
BHasHoverStyle | ContentBrowserItem.BHasHoverStyle()
|
|
SetAcceptsFocus | ContentBrowserItem.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | ContentBrowserItem.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | ContentBrowserItem.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | ContentBrowserItem.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | ContentBrowserItem.BScrollParentToFitWhenFocused()
|
|
IsSelected | ContentBrowserItem.IsSelected()
|
|
BHasDescendantKeyFocus | ContentBrowserItem.BHasDescendantKeyFocus()
|
|
BLoadLayout | ContentBrowserItem.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | ContentBrowserItem.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | ContentBrowserItem.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | ContentBrowserItem.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | ContentBrowserItem.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | ContentBrowserItem.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | ContentBrowserItem.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | ContentBrowserItem.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | ContentBrowserItem.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | ContentBrowserItem.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | ContentBrowserItem.ScrollToTop()
|
|
ScrollToBottom | ContentBrowserItem.ScrollToBottom()
|
|
ScrollToLeftEdge | ContentBrowserItem.ScrollToLeftEdge()
|
|
ScrollToRightEdge | ContentBrowserItem.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | ContentBrowserItem.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | ContentBrowserItem.BCanSeeInParentScroll()
|
|
GetAttributeInt | ContentBrowserItem.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | ContentBrowserItem.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | ContentBrowserItem.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | ContentBrowserItem.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | ContentBrowserItem.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | ContentBrowserItem.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | ContentBrowserItem.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | ContentBrowserItem.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | ContentBrowserItem.BReadyForDisplay()
|
|
SetReadyForDisplay | ContentBrowserItem.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | ContentBrowserItem.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | ContentBrowserItem.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | ContentBrowserItem.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | ContentBrowserItem.paneltype()
|
DestinationsScrollPanel
Function | Signature | Description |
---|---|---|
visible | DestinationsScrollPanel.visible( boolean boolean_1 )
|
|
enabled | DestinationsScrollPanel.enabled( boolean boolean_1 )
|
|
checked | DestinationsScrollPanel.checked( boolean boolean_1 )
|
|
defaultfocus | DestinationsScrollPanel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | DestinationsScrollPanel.inputnamespace( cstring cstring_1 )
|
|
hittest | DestinationsScrollPanel.hittest( boolean boolean_1 )
|
|
hittestchildren | DestinationsScrollPanel.hittestchildren( boolean boolean_1 )
|
|
tabindex | DestinationsScrollPanel.tabindex( float float_1 )
|
|
selectionpos_x | DestinationsScrollPanel.selectionpos_x( float float_1 )
|
|
selectionpos_y | DestinationsScrollPanel.selectionpos_y( float float_1 )
|
|
id | DestinationsScrollPanel.id()
|
|
layoutfile | DestinationsScrollPanel.layoutfile()
|
|
contentwidth | DestinationsScrollPanel.contentwidth()
|
|
contentheight | DestinationsScrollPanel.contentheight()
|
|
desiredlayoutwidth | DestinationsScrollPanel.desiredlayoutwidth()
|
|
desiredlayoutheight | DestinationsScrollPanel.desiredlayoutheight()
|
|
actuallayoutwidth | DestinationsScrollPanel.actuallayoutwidth()
|
|
actuallayoutheight | DestinationsScrollPanel.actuallayoutheight()
|
|
actualxoffset | DestinationsScrollPanel.actualxoffset()
|
|
actualyoffset | DestinationsScrollPanel.actualyoffset()
|
|
scrolloffset_y | DestinationsScrollPanel.scrolloffset_y()
|
|
scrolloffset_x | DestinationsScrollPanel.scrolloffset_x()
|
|
actualuiscale_y | DestinationsScrollPanel.actualuiscale_y()
|
|
actualuiscale_x | DestinationsScrollPanel.actualuiscale_x()
|
|
style | DestinationsScrollPanel.style()
|
|
AddClass | DestinationsScrollPanel.AddClass( cstring cstring_1 )
|
|
RemoveClass | DestinationsScrollPanel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | DestinationsScrollPanel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | DestinationsScrollPanel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | DestinationsScrollPanel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | DestinationsScrollPanel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | DestinationsScrollPanel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | DestinationsScrollPanel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | DestinationsScrollPanel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | DestinationsScrollPanel.IsDraggable()
|
|
GetChildCount | DestinationsScrollPanel.GetChildCount()
|
|
GetChild | DestinationsScrollPanel.GetChild( integer integer_1 )
|
|
GetChildIndex | DestinationsScrollPanel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | DestinationsScrollPanel.Children()
|
|
FindChildrenWithClassTraverse | DestinationsScrollPanel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | DestinationsScrollPanel.GetParent()
|
|
SetParent | DestinationsScrollPanel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | DestinationsScrollPanel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | DestinationsScrollPanel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | DestinationsScrollPanel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | DestinationsScrollPanel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | DestinationsScrollPanel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | DestinationsScrollPanel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | DestinationsScrollPanel.GetPositionWithinWindow()
|
|
ApplyStyles | DestinationsScrollPanel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | DestinationsScrollPanel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | DestinationsScrollPanel.DeleteAsync( float float_1 )
|
|
BIsTransparent | DestinationsScrollPanel.BIsTransparent()
|
|
BAcceptsInput | DestinationsScrollPanel.BAcceptsInput()
|
|
BAcceptsFocus | DestinationsScrollPanel.BAcceptsFocus()
|
|
SetFocus | DestinationsScrollPanel.SetFocus()
|
|
UpdateFocusInContext | DestinationsScrollPanel.UpdateFocusInContext()
|
|
BHasHoverStyle | DestinationsScrollPanel.BHasHoverStyle()
|
|
SetAcceptsFocus | DestinationsScrollPanel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | DestinationsScrollPanel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | DestinationsScrollPanel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | DestinationsScrollPanel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | DestinationsScrollPanel.BScrollParentToFitWhenFocused()
|
|
IsSelected | DestinationsScrollPanel.IsSelected()
|
|
BHasDescendantKeyFocus | DestinationsScrollPanel.BHasDescendantKeyFocus()
|
|
BLoadLayout | DestinationsScrollPanel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | DestinationsScrollPanel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | DestinationsScrollPanel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | DestinationsScrollPanel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | DestinationsScrollPanel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | DestinationsScrollPanel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | DestinationsScrollPanel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | DestinationsScrollPanel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | DestinationsScrollPanel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | DestinationsScrollPanel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | DestinationsScrollPanel.ScrollToTop()
|
|
ScrollToBottom | DestinationsScrollPanel.ScrollToBottom()
|
|
ScrollToLeftEdge | DestinationsScrollPanel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | DestinationsScrollPanel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | DestinationsScrollPanel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | DestinationsScrollPanel.BCanSeeInParentScroll()
|
|
GetAttributeInt | DestinationsScrollPanel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | DestinationsScrollPanel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | DestinationsScrollPanel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | DestinationsScrollPanel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | DestinationsScrollPanel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | DestinationsScrollPanel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | DestinationsScrollPanel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | DestinationsScrollPanel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | DestinationsScrollPanel.BReadyForDisplay()
|
|
SetReadyForDisplay | DestinationsScrollPanel.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | DestinationsScrollPanel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | DestinationsScrollPanel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | DestinationsScrollPanel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | DestinationsScrollPanel.paneltype()
|
DestinationsSettingsPanel
Function | Signature | Description |
---|---|---|
visible | DestinationsSettingsPanel.visible( boolean boolean_1 )
|
|
enabled | DestinationsSettingsPanel.enabled( boolean boolean_1 )
|
|
checked | DestinationsSettingsPanel.checked( boolean boolean_1 )
|
|
defaultfocus | DestinationsSettingsPanel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | DestinationsSettingsPanel.inputnamespace( cstring cstring_1 )
|
|
hittest | DestinationsSettingsPanel.hittest( boolean boolean_1 )
|
|
hittestchildren | DestinationsSettingsPanel.hittestchildren( boolean boolean_1 )
|
|
tabindex | DestinationsSettingsPanel.tabindex( float float_1 )
|
|
selectionpos_x | DestinationsSettingsPanel.selectionpos_x( float float_1 )
|
|
selectionpos_y | DestinationsSettingsPanel.selectionpos_y( float float_1 )
|
|
id | DestinationsSettingsPanel.id()
|
|
layoutfile | DestinationsSettingsPanel.layoutfile()
|
|
contentwidth | DestinationsSettingsPanel.contentwidth()
|
|
contentheight | DestinationsSettingsPanel.contentheight()
|
|
desiredlayoutwidth | DestinationsSettingsPanel.desiredlayoutwidth()
|
|
desiredlayoutheight | DestinationsSettingsPanel.desiredlayoutheight()
|
|
actuallayoutwidth | DestinationsSettingsPanel.actuallayoutwidth()
|
|
actuallayoutheight | DestinationsSettingsPanel.actuallayoutheight()
|
|
actualxoffset | DestinationsSettingsPanel.actualxoffset()
|
|
actualyoffset | DestinationsSettingsPanel.actualyoffset()
|
|
scrolloffset_y | DestinationsSettingsPanel.scrolloffset_y()
|
|
scrolloffset_x | DestinationsSettingsPanel.scrolloffset_x()
|
|
actualuiscale_y | DestinationsSettingsPanel.actualuiscale_y()
|
|
actualuiscale_x | DestinationsSettingsPanel.actualuiscale_x()
|
|
style | DestinationsSettingsPanel.style()
|
|
AddClass | DestinationsSettingsPanel.AddClass( cstring cstring_1 )
|
|
RemoveClass | DestinationsSettingsPanel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | DestinationsSettingsPanel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | DestinationsSettingsPanel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | DestinationsSettingsPanel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | DestinationsSettingsPanel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | DestinationsSettingsPanel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | DestinationsSettingsPanel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | DestinationsSettingsPanel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | DestinationsSettingsPanel.IsDraggable()
|
|
GetChildCount | DestinationsSettingsPanel.GetChildCount()
|
|
GetChild | DestinationsSettingsPanel.GetChild( integer integer_1 )
|
|
GetChildIndex | DestinationsSettingsPanel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | DestinationsSettingsPanel.Children()
|
|
FindChildrenWithClassTraverse | DestinationsSettingsPanel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | DestinationsSettingsPanel.GetParent()
|
|
SetParent | DestinationsSettingsPanel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | DestinationsSettingsPanel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | DestinationsSettingsPanel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | DestinationsSettingsPanel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | DestinationsSettingsPanel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | DestinationsSettingsPanel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | DestinationsSettingsPanel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | DestinationsSettingsPanel.GetPositionWithinWindow()
|
|
ApplyStyles | DestinationsSettingsPanel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | DestinationsSettingsPanel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | DestinationsSettingsPanel.DeleteAsync( float float_1 )
|
|
BIsTransparent | DestinationsSettingsPanel.BIsTransparent()
|
|
BAcceptsInput | DestinationsSettingsPanel.BAcceptsInput()
|
|
BAcceptsFocus | DestinationsSettingsPanel.BAcceptsFocus()
|
|
SetFocus | DestinationsSettingsPanel.SetFocus()
|
|
UpdateFocusInContext | DestinationsSettingsPanel.UpdateFocusInContext()
|
|
BHasHoverStyle | DestinationsSettingsPanel.BHasHoverStyle()
|
|
SetAcceptsFocus | DestinationsSettingsPanel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | DestinationsSettingsPanel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | DestinationsSettingsPanel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | DestinationsSettingsPanel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | DestinationsSettingsPanel.BScrollParentToFitWhenFocused()
|
|
IsSelected | DestinationsSettingsPanel.IsSelected()
|
|
BHasDescendantKeyFocus | DestinationsSettingsPanel.BHasDescendantKeyFocus()
|
|
BLoadLayout | DestinationsSettingsPanel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | DestinationsSettingsPanel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | DestinationsSettingsPanel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | DestinationsSettingsPanel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | DestinationsSettingsPanel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | DestinationsSettingsPanel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | DestinationsSettingsPanel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | DestinationsSettingsPanel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | DestinationsSettingsPanel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | DestinationsSettingsPanel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | DestinationsSettingsPanel.ScrollToTop()
|
|
ScrollToBottom | DestinationsSettingsPanel.ScrollToBottom()
|
|
ScrollToLeftEdge | DestinationsSettingsPanel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | DestinationsSettingsPanel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | DestinationsSettingsPanel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | DestinationsSettingsPanel.BCanSeeInParentScroll()
|
|
GetAttributeInt | DestinationsSettingsPanel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | DestinationsSettingsPanel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | DestinationsSettingsPanel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | DestinationsSettingsPanel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | DestinationsSettingsPanel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | DestinationsSettingsPanel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | DestinationsSettingsPanel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | DestinationsSettingsPanel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | DestinationsSettingsPanel.BReadyForDisplay()
|
|
SetReadyForDisplay | DestinationsSettingsPanel.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | DestinationsSettingsPanel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | DestinationsSettingsPanel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | DestinationsSettingsPanel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | DestinationsSettingsPanel.paneltype()
|
DestinationsTutorialPanel
Function | Signature | Description |
---|---|---|
visible | DestinationsTutorialPanel.visible( boolean boolean_1 )
|
|
enabled | DestinationsTutorialPanel.enabled( boolean boolean_1 )
|
|
checked | DestinationsTutorialPanel.checked( boolean boolean_1 )
|
|
defaultfocus | DestinationsTutorialPanel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | DestinationsTutorialPanel.inputnamespace( cstring cstring_1 )
|
|
hittest | DestinationsTutorialPanel.hittest( boolean boolean_1 )
|
|
hittestchildren | DestinationsTutorialPanel.hittestchildren( boolean boolean_1 )
|
|
tabindex | DestinationsTutorialPanel.tabindex( float float_1 )
|
|
selectionpos_x | DestinationsTutorialPanel.selectionpos_x( float float_1 )
|
|
selectionpos_y | DestinationsTutorialPanel.selectionpos_y( float float_1 )
|
|
id | DestinationsTutorialPanel.id()
|
|
layoutfile | DestinationsTutorialPanel.layoutfile()
|
|
contentwidth | DestinationsTutorialPanel.contentwidth()
|
|
contentheight | DestinationsTutorialPanel.contentheight()
|
|
desiredlayoutwidth | DestinationsTutorialPanel.desiredlayoutwidth()
|
|
desiredlayoutheight | DestinationsTutorialPanel.desiredlayoutheight()
|
|
actuallayoutwidth | DestinationsTutorialPanel.actuallayoutwidth()
|
|
actuallayoutheight | DestinationsTutorialPanel.actuallayoutheight()
|
|
actualxoffset | DestinationsTutorialPanel.actualxoffset()
|
|
actualyoffset | DestinationsTutorialPanel.actualyoffset()
|
|
scrolloffset_y | DestinationsTutorialPanel.scrolloffset_y()
|
|
scrolloffset_x | DestinationsTutorialPanel.scrolloffset_x()
|
|
actualuiscale_y | DestinationsTutorialPanel.actualuiscale_y()
|
|
actualuiscale_x | DestinationsTutorialPanel.actualuiscale_x()
|
|
style | DestinationsTutorialPanel.style()
|
|
AddClass | DestinationsTutorialPanel.AddClass( cstring cstring_1 )
|
|
RemoveClass | DestinationsTutorialPanel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | DestinationsTutorialPanel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | DestinationsTutorialPanel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | DestinationsTutorialPanel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | DestinationsTutorialPanel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | DestinationsTutorialPanel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | DestinationsTutorialPanel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | DestinationsTutorialPanel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | DestinationsTutorialPanel.IsDraggable()
|
|
GetChildCount | DestinationsTutorialPanel.GetChildCount()
|
|
GetChild | DestinationsTutorialPanel.GetChild( integer integer_1 )
|
|
GetChildIndex | DestinationsTutorialPanel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | DestinationsTutorialPanel.Children()
|
|
FindChildrenWithClassTraverse | DestinationsTutorialPanel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | DestinationsTutorialPanel.GetParent()
|
|
SetParent | DestinationsTutorialPanel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | DestinationsTutorialPanel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | DestinationsTutorialPanel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | DestinationsTutorialPanel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | DestinationsTutorialPanel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | DestinationsTutorialPanel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | DestinationsTutorialPanel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | DestinationsTutorialPanel.GetPositionWithinWindow()
|
|
ApplyStyles | DestinationsTutorialPanel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | DestinationsTutorialPanel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | DestinationsTutorialPanel.DeleteAsync( float float_1 )
|
|
BIsTransparent | DestinationsTutorialPanel.BIsTransparent()
|
|
BAcceptsInput | DestinationsTutorialPanel.BAcceptsInput()
|
|
BAcceptsFocus | DestinationsTutorialPanel.BAcceptsFocus()
|
|
SetFocus | DestinationsTutorialPanel.SetFocus()
|
|
UpdateFocusInContext | DestinationsTutorialPanel.UpdateFocusInContext()
|
|
BHasHoverStyle | DestinationsTutorialPanel.BHasHoverStyle()
|
|
SetAcceptsFocus | DestinationsTutorialPanel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | DestinationsTutorialPanel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | DestinationsTutorialPanel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | DestinationsTutorialPanel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | DestinationsTutorialPanel.BScrollParentToFitWhenFocused()
|
|
IsSelected | DestinationsTutorialPanel.IsSelected()
|
|
BHasDescendantKeyFocus | DestinationsTutorialPanel.BHasDescendantKeyFocus()
|
|
BLoadLayout | DestinationsTutorialPanel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | DestinationsTutorialPanel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | DestinationsTutorialPanel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | DestinationsTutorialPanel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | DestinationsTutorialPanel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | DestinationsTutorialPanel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | DestinationsTutorialPanel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | DestinationsTutorialPanel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | DestinationsTutorialPanel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | DestinationsTutorialPanel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | DestinationsTutorialPanel.ScrollToTop()
|
|
ScrollToBottom | DestinationsTutorialPanel.ScrollToBottom()
|
|
ScrollToLeftEdge | DestinationsTutorialPanel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | DestinationsTutorialPanel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | DestinationsTutorialPanel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | DestinationsTutorialPanel.BCanSeeInParentScroll()
|
|
GetAttributeInt | DestinationsTutorialPanel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | DestinationsTutorialPanel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | DestinationsTutorialPanel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | DestinationsTutorialPanel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | DestinationsTutorialPanel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | DestinationsTutorialPanel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | DestinationsTutorialPanel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | DestinationsTutorialPanel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | DestinationsTutorialPanel.BReadyForDisplay()
|
|
SetReadyForDisplay | DestinationsTutorialPanel.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | DestinationsTutorialPanel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | DestinationsTutorialPanel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | DestinationsTutorialPanel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | DestinationsTutorialPanel.paneltype()
|
DestinationsWelcomePanel
Function | Signature | Description |
---|---|---|
visible | DestinationsWelcomePanel.visible( boolean boolean_1 )
|
|
enabled | DestinationsWelcomePanel.enabled( boolean boolean_1 )
|
|
checked | DestinationsWelcomePanel.checked( boolean boolean_1 )
|
|
defaultfocus | DestinationsWelcomePanel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | DestinationsWelcomePanel.inputnamespace( cstring cstring_1 )
|
|
hittest | DestinationsWelcomePanel.hittest( boolean boolean_1 )
|
|
hittestchildren | DestinationsWelcomePanel.hittestchildren( boolean boolean_1 )
|
|
tabindex | DestinationsWelcomePanel.tabindex( float float_1 )
|
|
selectionpos_x | DestinationsWelcomePanel.selectionpos_x( float float_1 )
|
|
selectionpos_y | DestinationsWelcomePanel.selectionpos_y( float float_1 )
|
|
id | DestinationsWelcomePanel.id()
|
|
layoutfile | DestinationsWelcomePanel.layoutfile()
|
|
contentwidth | DestinationsWelcomePanel.contentwidth()
|
|
contentheight | DestinationsWelcomePanel.contentheight()
|
|
desiredlayoutwidth | DestinationsWelcomePanel.desiredlayoutwidth()
|
|
desiredlayoutheight | DestinationsWelcomePanel.desiredlayoutheight()
|
|
actuallayoutwidth | DestinationsWelcomePanel.actuallayoutwidth()
|
|
actuallayoutheight | DestinationsWelcomePanel.actuallayoutheight()
|
|
actualxoffset | DestinationsWelcomePanel.actualxoffset()
|
|
actualyoffset | DestinationsWelcomePanel.actualyoffset()
|
|
scrolloffset_y | DestinationsWelcomePanel.scrolloffset_y()
|
|
scrolloffset_x | DestinationsWelcomePanel.scrolloffset_x()
|
|
actualuiscale_y | DestinationsWelcomePanel.actualuiscale_y()
|
|
actualuiscale_x | DestinationsWelcomePanel.actualuiscale_x()
|
|
style | DestinationsWelcomePanel.style()
|
|
AddClass | DestinationsWelcomePanel.AddClass( cstring cstring_1 )
|
|
RemoveClass | DestinationsWelcomePanel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | DestinationsWelcomePanel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | DestinationsWelcomePanel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | DestinationsWelcomePanel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | DestinationsWelcomePanel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | DestinationsWelcomePanel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | DestinationsWelcomePanel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | DestinationsWelcomePanel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | DestinationsWelcomePanel.IsDraggable()
|
|
GetChildCount | DestinationsWelcomePanel.GetChildCount()
|
|
GetChild | DestinationsWelcomePanel.GetChild( integer integer_1 )
|
|
GetChildIndex | DestinationsWelcomePanel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | DestinationsWelcomePanel.Children()
|
|
FindChildrenWithClassTraverse | DestinationsWelcomePanel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | DestinationsWelcomePanel.GetParent()
|
|
SetParent | DestinationsWelcomePanel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | DestinationsWelcomePanel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | DestinationsWelcomePanel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | DestinationsWelcomePanel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | DestinationsWelcomePanel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | DestinationsWelcomePanel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | DestinationsWelcomePanel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | DestinationsWelcomePanel.GetPositionWithinWindow()
|
|
ApplyStyles | DestinationsWelcomePanel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | DestinationsWelcomePanel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | DestinationsWelcomePanel.DeleteAsync( float float_1 )
|
|
BIsTransparent | DestinationsWelcomePanel.BIsTransparent()
|
|
BAcceptsInput | DestinationsWelcomePanel.BAcceptsInput()
|
|
BAcceptsFocus | DestinationsWelcomePanel.BAcceptsFocus()
|
|
SetFocus | DestinationsWelcomePanel.SetFocus()
|
|
UpdateFocusInContext | DestinationsWelcomePanel.UpdateFocusInContext()
|
|
BHasHoverStyle | DestinationsWelcomePanel.BHasHoverStyle()
|
|
SetAcceptsFocus | DestinationsWelcomePanel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | DestinationsWelcomePanel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | DestinationsWelcomePanel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | DestinationsWelcomePanel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | DestinationsWelcomePanel.BScrollParentToFitWhenFocused()
|
|
IsSelected | DestinationsWelcomePanel.IsSelected()
|
|
BHasDescendantKeyFocus | DestinationsWelcomePanel.BHasDescendantKeyFocus()
|
|
BLoadLayout | DestinationsWelcomePanel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | DestinationsWelcomePanel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | DestinationsWelcomePanel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | DestinationsWelcomePanel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | DestinationsWelcomePanel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | DestinationsWelcomePanel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | DestinationsWelcomePanel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | DestinationsWelcomePanel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | DestinationsWelcomePanel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | DestinationsWelcomePanel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | DestinationsWelcomePanel.ScrollToTop()
|
|
ScrollToBottom | DestinationsWelcomePanel.ScrollToBottom()
|
|
ScrollToLeftEdge | DestinationsWelcomePanel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | DestinationsWelcomePanel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | DestinationsWelcomePanel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | DestinationsWelcomePanel.BCanSeeInParentScroll()
|
|
GetAttributeInt | DestinationsWelcomePanel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | DestinationsWelcomePanel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | DestinationsWelcomePanel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | DestinationsWelcomePanel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | DestinationsWelcomePanel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | DestinationsWelcomePanel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | DestinationsWelcomePanel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | DestinationsWelcomePanel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | DestinationsWelcomePanel.BReadyForDisplay()
|
|
SetReadyForDisplay | DestinationsWelcomePanel.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | DestinationsWelcomePanel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | DestinationsWelcomePanel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | DestinationsWelcomePanel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | DestinationsWelcomePanel.paneltype()
|
GameTrophyAppLogoPanel
Function | Signature | Description |
---|---|---|
visible | GameTrophyAppLogoPanel.visible( boolean boolean_1 )
|
|
enabled | GameTrophyAppLogoPanel.enabled( boolean boolean_1 )
|
|
checked | GameTrophyAppLogoPanel.checked( boolean boolean_1 )
|
|
defaultfocus | GameTrophyAppLogoPanel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | GameTrophyAppLogoPanel.inputnamespace( cstring cstring_1 )
|
|
hittest | GameTrophyAppLogoPanel.hittest( boolean boolean_1 )
|
|
hittestchildren | GameTrophyAppLogoPanel.hittestchildren( boolean boolean_1 )
|
|
tabindex | GameTrophyAppLogoPanel.tabindex( float float_1 )
|
|
selectionpos_x | GameTrophyAppLogoPanel.selectionpos_x( float float_1 )
|
|
selectionpos_y | GameTrophyAppLogoPanel.selectionpos_y( float float_1 )
|
|
id | GameTrophyAppLogoPanel.id()
|
|
layoutfile | GameTrophyAppLogoPanel.layoutfile()
|
|
contentwidth | GameTrophyAppLogoPanel.contentwidth()
|
|
contentheight | GameTrophyAppLogoPanel.contentheight()
|
|
desiredlayoutwidth | GameTrophyAppLogoPanel.desiredlayoutwidth()
|
|
desiredlayoutheight | GameTrophyAppLogoPanel.desiredlayoutheight()
|
|
actuallayoutwidth | GameTrophyAppLogoPanel.actuallayoutwidth()
|
|
actuallayoutheight | GameTrophyAppLogoPanel.actuallayoutheight()
|
|
actualxoffset | GameTrophyAppLogoPanel.actualxoffset()
|
|
actualyoffset | GameTrophyAppLogoPanel.actualyoffset()
|
|
scrolloffset_y | GameTrophyAppLogoPanel.scrolloffset_y()
|
|
scrolloffset_x | GameTrophyAppLogoPanel.scrolloffset_x()
|
|
actualuiscale_y | GameTrophyAppLogoPanel.actualuiscale_y()
|
|
actualuiscale_x | GameTrophyAppLogoPanel.actualuiscale_x()
|
|
style | GameTrophyAppLogoPanel.style()
|
|
AddClass | GameTrophyAppLogoPanel.AddClass( cstring cstring_1 )
|
|
RemoveClass | GameTrophyAppLogoPanel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | GameTrophyAppLogoPanel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | GameTrophyAppLogoPanel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | GameTrophyAppLogoPanel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | GameTrophyAppLogoPanel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | GameTrophyAppLogoPanel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | GameTrophyAppLogoPanel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | GameTrophyAppLogoPanel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | GameTrophyAppLogoPanel.IsDraggable()
|
|
GetChildCount | GameTrophyAppLogoPanel.GetChildCount()
|
|
GetChild | GameTrophyAppLogoPanel.GetChild( integer integer_1 )
|
|
GetChildIndex | GameTrophyAppLogoPanel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | GameTrophyAppLogoPanel.Children()
|
|
FindChildrenWithClassTraverse | GameTrophyAppLogoPanel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | GameTrophyAppLogoPanel.GetParent()
|
|
SetParent | GameTrophyAppLogoPanel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | GameTrophyAppLogoPanel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | GameTrophyAppLogoPanel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | GameTrophyAppLogoPanel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | GameTrophyAppLogoPanel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | GameTrophyAppLogoPanel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | GameTrophyAppLogoPanel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | GameTrophyAppLogoPanel.GetPositionWithinWindow()
|
|
ApplyStyles | GameTrophyAppLogoPanel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | GameTrophyAppLogoPanel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | GameTrophyAppLogoPanel.DeleteAsync( float float_1 )
|
|
BIsTransparent | GameTrophyAppLogoPanel.BIsTransparent()
|
|
BAcceptsInput | GameTrophyAppLogoPanel.BAcceptsInput()
|
|
BAcceptsFocus | GameTrophyAppLogoPanel.BAcceptsFocus()
|
|
SetFocus | GameTrophyAppLogoPanel.SetFocus()
|
|
UpdateFocusInContext | GameTrophyAppLogoPanel.UpdateFocusInContext()
|
|
BHasHoverStyle | GameTrophyAppLogoPanel.BHasHoverStyle()
|
|
SetAcceptsFocus | GameTrophyAppLogoPanel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | GameTrophyAppLogoPanel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | GameTrophyAppLogoPanel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | GameTrophyAppLogoPanel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | GameTrophyAppLogoPanel.BScrollParentToFitWhenFocused()
|
|
IsSelected | GameTrophyAppLogoPanel.IsSelected()
|
|
BHasDescendantKeyFocus | GameTrophyAppLogoPanel.BHasDescendantKeyFocus()
|
|
BLoadLayout | GameTrophyAppLogoPanel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | GameTrophyAppLogoPanel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | GameTrophyAppLogoPanel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | GameTrophyAppLogoPanel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | GameTrophyAppLogoPanel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | GameTrophyAppLogoPanel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | GameTrophyAppLogoPanel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | GameTrophyAppLogoPanel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | GameTrophyAppLogoPanel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | GameTrophyAppLogoPanel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | GameTrophyAppLogoPanel.ScrollToTop()
|
|
ScrollToBottom | GameTrophyAppLogoPanel.ScrollToBottom()
|
|
ScrollToLeftEdge | GameTrophyAppLogoPanel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | GameTrophyAppLogoPanel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | GameTrophyAppLogoPanel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | GameTrophyAppLogoPanel.BCanSeeInParentScroll()
|
|
GetAttributeInt | GameTrophyAppLogoPanel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | GameTrophyAppLogoPanel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | GameTrophyAppLogoPanel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | GameTrophyAppLogoPanel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | GameTrophyAppLogoPanel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | GameTrophyAppLogoPanel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | GameTrophyAppLogoPanel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | GameTrophyAppLogoPanel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | GameTrophyAppLogoPanel.BReadyForDisplay()
|
|
SetReadyForDisplay | GameTrophyAppLogoPanel.SetReadyForDisplay( boolean boolean_1 )
|
|
ShowDetailsPanel | GameTrophyAppLogoPanel.ShowDetailsPanel()
|
|
HideDetailsPanel | GameTrophyAppLogoPanel.HideDetailsPanel()
|
|
ViewAppDetails | GameTrophyAppLogoPanel.ViewAppDetails()
|
|
ViewOwnerSteamAchievements | GameTrophyAppLogoPanel.ViewOwnerSteamAchievements()
|
|
ViewOwnerSteamProfile | GameTrophyAppLogoPanel.ViewOwnerSteamProfile()
|
|
ViewOwnerSteamScreenshots | GameTrophyAppLogoPanel.ViewOwnerSteamScreenshots()
|
|
ViewLibraryScreenshots | GameTrophyAppLogoPanel.ViewLibraryScreenshots()
|
|
SetPanelEvent | GameTrophyAppLogoPanel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | GameTrophyAppLogoPanel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | GameTrophyAppLogoPanel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | GameTrophyAppLogoPanel.paneltype()
|
GameTrophyDetailsPanel
Function | Signature | Description |
---|---|---|
visible | GameTrophyDetailsPanel.visible( boolean boolean_1 )
|
|
enabled | GameTrophyDetailsPanel.enabled( boolean boolean_1 )
|
|
checked | GameTrophyDetailsPanel.checked( boolean boolean_1 )
|
|
defaultfocus | GameTrophyDetailsPanel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | GameTrophyDetailsPanel.inputnamespace( cstring cstring_1 )
|
|
hittest | GameTrophyDetailsPanel.hittest( boolean boolean_1 )
|
|
hittestchildren | GameTrophyDetailsPanel.hittestchildren( boolean boolean_1 )
|
|
tabindex | GameTrophyDetailsPanel.tabindex( float float_1 )
|
|
selectionpos_x | GameTrophyDetailsPanel.selectionpos_x( float float_1 )
|
|
selectionpos_y | GameTrophyDetailsPanel.selectionpos_y( float float_1 )
|
|
id | GameTrophyDetailsPanel.id()
|
|
layoutfile | GameTrophyDetailsPanel.layoutfile()
|
|
contentwidth | GameTrophyDetailsPanel.contentwidth()
|
|
contentheight | GameTrophyDetailsPanel.contentheight()
|
|
desiredlayoutwidth | GameTrophyDetailsPanel.desiredlayoutwidth()
|
|
desiredlayoutheight | GameTrophyDetailsPanel.desiredlayoutheight()
|
|
actuallayoutwidth | GameTrophyDetailsPanel.actuallayoutwidth()
|
|
actuallayoutheight | GameTrophyDetailsPanel.actuallayoutheight()
|
|
actualxoffset | GameTrophyDetailsPanel.actualxoffset()
|
|
actualyoffset | GameTrophyDetailsPanel.actualyoffset()
|
|
scrolloffset_y | GameTrophyDetailsPanel.scrolloffset_y()
|
|
scrolloffset_x | GameTrophyDetailsPanel.scrolloffset_x()
|
|
actualuiscale_y | GameTrophyDetailsPanel.actualuiscale_y()
|
|
actualuiscale_x | GameTrophyDetailsPanel.actualuiscale_x()
|
|
style | GameTrophyDetailsPanel.style()
|
|
AddClass | GameTrophyDetailsPanel.AddClass( cstring cstring_1 )
|
|
RemoveClass | GameTrophyDetailsPanel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | GameTrophyDetailsPanel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | GameTrophyDetailsPanel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | GameTrophyDetailsPanel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | GameTrophyDetailsPanel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | GameTrophyDetailsPanel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | GameTrophyDetailsPanel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | GameTrophyDetailsPanel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | GameTrophyDetailsPanel.IsDraggable()
|
|
GetChildCount | GameTrophyDetailsPanel.GetChildCount()
|
|
GetChild | GameTrophyDetailsPanel.GetChild( integer integer_1 )
|
|
GetChildIndex | GameTrophyDetailsPanel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | GameTrophyDetailsPanel.Children()
|
|
FindChildrenWithClassTraverse | GameTrophyDetailsPanel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | GameTrophyDetailsPanel.GetParent()
|
|
SetParent | GameTrophyDetailsPanel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | GameTrophyDetailsPanel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | GameTrophyDetailsPanel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | GameTrophyDetailsPanel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | GameTrophyDetailsPanel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | GameTrophyDetailsPanel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | GameTrophyDetailsPanel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | GameTrophyDetailsPanel.GetPositionWithinWindow()
|
|
ApplyStyles | GameTrophyDetailsPanel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | GameTrophyDetailsPanel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | GameTrophyDetailsPanel.DeleteAsync( float float_1 )
|
|
BIsTransparent | GameTrophyDetailsPanel.BIsTransparent()
|
|
BAcceptsInput | GameTrophyDetailsPanel.BAcceptsInput()
|
|
BAcceptsFocus | GameTrophyDetailsPanel.BAcceptsFocus()
|
|
SetFocus | GameTrophyDetailsPanel.SetFocus()
|
|
UpdateFocusInContext | GameTrophyDetailsPanel.UpdateFocusInContext()
|
|
BHasHoverStyle | GameTrophyDetailsPanel.BHasHoverStyle()
|
|
SetAcceptsFocus | GameTrophyDetailsPanel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | GameTrophyDetailsPanel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | GameTrophyDetailsPanel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | GameTrophyDetailsPanel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | GameTrophyDetailsPanel.BScrollParentToFitWhenFocused()
|
|
IsSelected | GameTrophyDetailsPanel.IsSelected()
|
|
BHasDescendantKeyFocus | GameTrophyDetailsPanel.BHasDescendantKeyFocus()
|
|
BLoadLayout | GameTrophyDetailsPanel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | GameTrophyDetailsPanel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | GameTrophyDetailsPanel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | GameTrophyDetailsPanel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | GameTrophyDetailsPanel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | GameTrophyDetailsPanel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | GameTrophyDetailsPanel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | GameTrophyDetailsPanel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | GameTrophyDetailsPanel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | GameTrophyDetailsPanel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | GameTrophyDetailsPanel.ScrollToTop()
|
|
ScrollToBottom | GameTrophyDetailsPanel.ScrollToBottom()
|
|
ScrollToLeftEdge | GameTrophyDetailsPanel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | GameTrophyDetailsPanel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | GameTrophyDetailsPanel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | GameTrophyDetailsPanel.BCanSeeInParentScroll()
|
|
GetAttributeInt | GameTrophyDetailsPanel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | GameTrophyDetailsPanel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | GameTrophyDetailsPanel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | GameTrophyDetailsPanel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | GameTrophyDetailsPanel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | GameTrophyDetailsPanel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | GameTrophyDetailsPanel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | GameTrophyDetailsPanel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | GameTrophyDetailsPanel.BReadyForDisplay()
|
|
SetReadyForDisplay | GameTrophyDetailsPanel.SetReadyForDisplay( boolean boolean_1 )
|
|
ShowDetailsPanel | GameTrophyDetailsPanel.ShowDetailsPanel()
|
|
HideDetailsPanel | GameTrophyDetailsPanel.HideDetailsPanel()
|
|
ViewAppDetails | GameTrophyDetailsPanel.ViewAppDetails()
|
|
ViewOwnerSteamAchievements | GameTrophyDetailsPanel.ViewOwnerSteamAchievements()
|
|
ViewOwnerSteamProfile | GameTrophyDetailsPanel.ViewOwnerSteamProfile()
|
|
ViewOwnerSteamScreenshots | GameTrophyDetailsPanel.ViewOwnerSteamScreenshots()
|
|
ViewLibraryScreenshots | GameTrophyDetailsPanel.ViewLibraryScreenshots()
|
|
SetPanelEvent | GameTrophyDetailsPanel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | GameTrophyDetailsPanel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | GameTrophyDetailsPanel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | GameTrophyDetailsPanel.paneltype()
|
HTML
Function | Signature | Description |
---|---|---|
visible | HTML.visible( boolean boolean_1 )
|
|
enabled | HTML.enabled( boolean boolean_1 )
|
|
checked | HTML.checked( boolean boolean_1 )
|
|
defaultfocus | HTML.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | HTML.inputnamespace( cstring cstring_1 )
|
|
hittest | HTML.hittest( boolean boolean_1 )
|
|
hittestchildren | HTML.hittestchildren( boolean boolean_1 )
|
|
tabindex | HTML.tabindex( float float_1 )
|
|
selectionpos_x | HTML.selectionpos_x( float float_1 )
|
|
selectionpos_y | HTML.selectionpos_y( float float_1 )
|
|
id | HTML.id()
|
|
layoutfile | HTML.layoutfile()
|
|
contentwidth | HTML.contentwidth()
|
|
contentheight | HTML.contentheight()
|
|
desiredlayoutwidth | HTML.desiredlayoutwidth()
|
|
desiredlayoutheight | HTML.desiredlayoutheight()
|
|
actuallayoutwidth | HTML.actuallayoutwidth()
|
|
actuallayoutheight | HTML.actuallayoutheight()
|
|
actualxoffset | HTML.actualxoffset()
|
|
actualyoffset | HTML.actualyoffset()
|
|
scrolloffset_y | HTML.scrolloffset_y()
|
|
scrolloffset_x | HTML.scrolloffset_x()
|
|
actualuiscale_y | HTML.actualuiscale_y()
|
|
actualuiscale_x | HTML.actualuiscale_x()
|
|
style | HTML.style()
|
|
AddClass | HTML.AddClass( cstring cstring_1 )
|
|
RemoveClass | HTML.RemoveClass( cstring cstring_1 )
|
|
BHasClass | HTML.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | HTML.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | HTML.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | HTML.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | HTML.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | HTML.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | HTML.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | HTML.IsDraggable()
|
|
GetChildCount | HTML.GetChildCount()
|
|
GetChild | HTML.GetChild( integer integer_1 )
|
|
GetChildIndex | HTML.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | HTML.Children()
|
|
FindChildrenWithClassTraverse | HTML.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | HTML.GetParent()
|
|
SetParent | HTML.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | HTML.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | HTML.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | HTML.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | HTML.RemoveAndDeleteChildren()
|
|
MoveChildBefore | HTML.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | HTML.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | HTML.GetPositionWithinWindow()
|
|
ApplyStyles | HTML.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | HTML.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | HTML.DeleteAsync( float float_1 )
|
|
BIsTransparent | HTML.BIsTransparent()
|
|
BAcceptsInput | HTML.BAcceptsInput()
|
|
BAcceptsFocus | HTML.BAcceptsFocus()
|
|
SetFocus | HTML.SetFocus()
|
|
UpdateFocusInContext | HTML.UpdateFocusInContext()
|
|
BHasHoverStyle | HTML.BHasHoverStyle()
|
|
SetAcceptsFocus | HTML.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | HTML.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | HTML.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | HTML.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | HTML.BScrollParentToFitWhenFocused()
|
|
IsSelected | HTML.IsSelected()
|
|
BHasDescendantKeyFocus | HTML.BHasDescendantKeyFocus()
|
|
BLoadLayout | HTML.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | HTML.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | HTML.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | HTML.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | HTML.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | HTML.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | HTML.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | HTML.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | HTML.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | HTML.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | HTML.ScrollToTop()
|
|
ScrollToBottom | HTML.ScrollToBottom()
|
|
ScrollToLeftEdge | HTML.ScrollToLeftEdge()
|
|
ScrollToRightEdge | HTML.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | HTML.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | HTML.BCanSeeInParentScroll()
|
|
GetAttributeInt | HTML.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | HTML.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | HTML.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | HTML.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | HTML.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | HTML.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | HTML.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | HTML.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | HTML.BReadyForDisplay()
|
|
SetReadyForDisplay | HTML.SetReadyForDisplay( boolean boolean_1 )
|
|
SetURL | HTML.SetURL( cstring cstring_1 )
|
|
RunJavascript | HTML.RunJavascript( cstring cstring_1 )
|
|
SetIgnoreCursor | HTML.SetIgnoreCursor( boolean boolean_1 )
|
|
SetPanelEvent | HTML.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | HTML.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | HTML.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | HTML.paneltype()
|
LobbyItem
Function | Signature | Description |
---|---|---|
visible | LobbyItem.visible( boolean boolean_1 )
|
|
enabled | LobbyItem.enabled( boolean boolean_1 )
|
|
checked | LobbyItem.checked( boolean boolean_1 )
|
|
defaultfocus | LobbyItem.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | LobbyItem.inputnamespace( cstring cstring_1 )
|
|
hittest | LobbyItem.hittest( boolean boolean_1 )
|
|
hittestchildren | LobbyItem.hittestchildren( boolean boolean_1 )
|
|
tabindex | LobbyItem.tabindex( float float_1 )
|
|
selectionpos_x | LobbyItem.selectionpos_x( float float_1 )
|
|
selectionpos_y | LobbyItem.selectionpos_y( float float_1 )
|
|
id | LobbyItem.id()
|
|
layoutfile | LobbyItem.layoutfile()
|
|
contentwidth | LobbyItem.contentwidth()
|
|
contentheight | LobbyItem.contentheight()
|
|
desiredlayoutwidth | LobbyItem.desiredlayoutwidth()
|
|
desiredlayoutheight | LobbyItem.desiredlayoutheight()
|
|
actuallayoutwidth | LobbyItem.actuallayoutwidth()
|
|
actuallayoutheight | LobbyItem.actuallayoutheight()
|
|
actualxoffset | LobbyItem.actualxoffset()
|
|
actualyoffset | LobbyItem.actualyoffset()
|
|
scrolloffset_y | LobbyItem.scrolloffset_y()
|
|
scrolloffset_x | LobbyItem.scrolloffset_x()
|
|
actualuiscale_y | LobbyItem.actualuiscale_y()
|
|
actualuiscale_x | LobbyItem.actualuiscale_x()
|
|
style | LobbyItem.style()
|
|
AddClass | LobbyItem.AddClass( cstring cstring_1 )
|
|
RemoveClass | LobbyItem.RemoveClass( cstring cstring_1 )
|
|
BHasClass | LobbyItem.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | LobbyItem.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | LobbyItem.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | LobbyItem.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | LobbyItem.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | LobbyItem.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | LobbyItem.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | LobbyItem.IsDraggable()
|
|
GetChildCount | LobbyItem.GetChildCount()
|
|
GetChild | LobbyItem.GetChild( integer integer_1 )
|
|
GetChildIndex | LobbyItem.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | LobbyItem.Children()
|
|
FindChildrenWithClassTraverse | LobbyItem.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | LobbyItem.GetParent()
|
|
SetParent | LobbyItem.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | LobbyItem.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | LobbyItem.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | LobbyItem.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | LobbyItem.RemoveAndDeleteChildren()
|
|
MoveChildBefore | LobbyItem.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | LobbyItem.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | LobbyItem.GetPositionWithinWindow()
|
|
ApplyStyles | LobbyItem.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | LobbyItem.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | LobbyItem.DeleteAsync( float float_1 )
|
|
BIsTransparent | LobbyItem.BIsTransparent()
|
|
BAcceptsInput | LobbyItem.BAcceptsInput()
|
|
BAcceptsFocus | LobbyItem.BAcceptsFocus()
|
|
SetFocus | LobbyItem.SetFocus()
|
|
UpdateFocusInContext | LobbyItem.UpdateFocusInContext()
|
|
BHasHoverStyle | LobbyItem.BHasHoverStyle()
|
|
SetAcceptsFocus | LobbyItem.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | LobbyItem.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | LobbyItem.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | LobbyItem.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | LobbyItem.BScrollParentToFitWhenFocused()
|
|
IsSelected | LobbyItem.IsSelected()
|
|
BHasDescendantKeyFocus | LobbyItem.BHasDescendantKeyFocus()
|
|
BLoadLayout | LobbyItem.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | LobbyItem.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | LobbyItem.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | LobbyItem.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | LobbyItem.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | LobbyItem.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | LobbyItem.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | LobbyItem.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | LobbyItem.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | LobbyItem.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | LobbyItem.ScrollToTop()
|
|
ScrollToBottom | LobbyItem.ScrollToBottom()
|
|
ScrollToLeftEdge | LobbyItem.ScrollToLeftEdge()
|
|
ScrollToRightEdge | LobbyItem.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | LobbyItem.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | LobbyItem.BCanSeeInParentScroll()
|
|
GetAttributeInt | LobbyItem.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | LobbyItem.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | LobbyItem.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | LobbyItem.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | LobbyItem.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | LobbyItem.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | LobbyItem.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | LobbyItem.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | LobbyItem.BReadyForDisplay()
|
|
SetReadyForDisplay | LobbyItem.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | LobbyItem.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | LobbyItem.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | LobbyItem.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | LobbyItem.paneltype()
|
Slider
Function | Signature | Description |
---|---|---|
value | Slider.value( float float_1 )
|
|
min | Slider.min( float float_1 )
|
|
max | Slider.max( float float_1 )
|
|
increment | Slider.increment( float float_1 )
|
|
default | Slider.default( float float_1 )
|
|
mousedown | Slider.mousedown()
|
|
SetDirection | Slider.SetDirection( unknown_variant_type unknown_variant_type_1 )
|
|
SetShowDefaultValue | Slider.SetShowDefaultValue( boolean boolean_1 )
|
|
SetRequiresSelection | Slider.SetRequiresSelection( boolean boolean_1 )
|
|
SetValueNoEvents | Slider.SetValueNoEvents( float float_1 )
|
|
SetPanelEvent | Slider.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | Slider.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | Slider.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | Slider.paneltype()
|
SteamToursAvatarCustomization
Function | Signature | Description |
---|---|---|
visible | SteamToursAvatarCustomization.visible( boolean boolean_1 )
|
|
enabled | SteamToursAvatarCustomization.enabled( boolean boolean_1 )
|
|
checked | SteamToursAvatarCustomization.checked( boolean boolean_1 )
|
|
defaultfocus | SteamToursAvatarCustomization.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | SteamToursAvatarCustomization.inputnamespace( cstring cstring_1 )
|
|
hittest | SteamToursAvatarCustomization.hittest( boolean boolean_1 )
|
|
hittestchildren | SteamToursAvatarCustomization.hittestchildren( boolean boolean_1 )
|
|
tabindex | SteamToursAvatarCustomization.tabindex( float float_1 )
|
|
selectionpos_x | SteamToursAvatarCustomization.selectionpos_x( float float_1 )
|
|
selectionpos_y | SteamToursAvatarCustomization.selectionpos_y( float float_1 )
|
|
id | SteamToursAvatarCustomization.id()
|
|
layoutfile | SteamToursAvatarCustomization.layoutfile()
|
|
contentwidth | SteamToursAvatarCustomization.contentwidth()
|
|
contentheight | SteamToursAvatarCustomization.contentheight()
|
|
desiredlayoutwidth | SteamToursAvatarCustomization.desiredlayoutwidth()
|
|
desiredlayoutheight | SteamToursAvatarCustomization.desiredlayoutheight()
|
|
actuallayoutwidth | SteamToursAvatarCustomization.actuallayoutwidth()
|
|
actuallayoutheight | SteamToursAvatarCustomization.actuallayoutheight()
|
|
actualxoffset | SteamToursAvatarCustomization.actualxoffset()
|
|
actualyoffset | SteamToursAvatarCustomization.actualyoffset()
|
|
scrolloffset_y | SteamToursAvatarCustomization.scrolloffset_y()
|
|
scrolloffset_x | SteamToursAvatarCustomization.scrolloffset_x()
|
|
actualuiscale_y | SteamToursAvatarCustomization.actualuiscale_y()
|
|
actualuiscale_x | SteamToursAvatarCustomization.actualuiscale_x()
|
|
style | SteamToursAvatarCustomization.style()
|
|
AddClass | SteamToursAvatarCustomization.AddClass( cstring cstring_1 )
|
|
RemoveClass | SteamToursAvatarCustomization.RemoveClass( cstring cstring_1 )
|
|
BHasClass | SteamToursAvatarCustomization.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | SteamToursAvatarCustomization.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | SteamToursAvatarCustomization.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | SteamToursAvatarCustomization.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | SteamToursAvatarCustomization.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | SteamToursAvatarCustomization.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | SteamToursAvatarCustomization.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | SteamToursAvatarCustomization.IsDraggable()
|
|
GetChildCount | SteamToursAvatarCustomization.GetChildCount()
|
|
GetChild | SteamToursAvatarCustomization.GetChild( integer integer_1 )
|
|
GetChildIndex | SteamToursAvatarCustomization.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | SteamToursAvatarCustomization.Children()
|
|
FindChildrenWithClassTraverse | SteamToursAvatarCustomization.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | SteamToursAvatarCustomization.GetParent()
|
|
SetParent | SteamToursAvatarCustomization.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | SteamToursAvatarCustomization.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | SteamToursAvatarCustomization.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | SteamToursAvatarCustomization.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | SteamToursAvatarCustomization.RemoveAndDeleteChildren()
|
|
MoveChildBefore | SteamToursAvatarCustomization.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | SteamToursAvatarCustomization.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | SteamToursAvatarCustomization.GetPositionWithinWindow()
|
|
ApplyStyles | SteamToursAvatarCustomization.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | SteamToursAvatarCustomization.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | SteamToursAvatarCustomization.DeleteAsync( float float_1 )
|
|
BIsTransparent | SteamToursAvatarCustomization.BIsTransparent()
|
|
BAcceptsInput | SteamToursAvatarCustomization.BAcceptsInput()
|
|
BAcceptsFocus | SteamToursAvatarCustomization.BAcceptsFocus()
|
|
SetFocus | SteamToursAvatarCustomization.SetFocus()
|
|
UpdateFocusInContext | SteamToursAvatarCustomization.UpdateFocusInContext()
|
|
BHasHoverStyle | SteamToursAvatarCustomization.BHasHoverStyle()
|
|
SetAcceptsFocus | SteamToursAvatarCustomization.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | SteamToursAvatarCustomization.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | SteamToursAvatarCustomization.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | SteamToursAvatarCustomization.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | SteamToursAvatarCustomization.BScrollParentToFitWhenFocused()
|
|
IsSelected | SteamToursAvatarCustomization.IsSelected()
|
|
BHasDescendantKeyFocus | SteamToursAvatarCustomization.BHasDescendantKeyFocus()
|
|
BLoadLayout | SteamToursAvatarCustomization.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | SteamToursAvatarCustomization.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | SteamToursAvatarCustomization.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | SteamToursAvatarCustomization.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | SteamToursAvatarCustomization.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | SteamToursAvatarCustomization.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | SteamToursAvatarCustomization.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | SteamToursAvatarCustomization.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | SteamToursAvatarCustomization.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | SteamToursAvatarCustomization.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | SteamToursAvatarCustomization.ScrollToTop()
|
|
ScrollToBottom | SteamToursAvatarCustomization.ScrollToBottom()
|
|
ScrollToLeftEdge | SteamToursAvatarCustomization.ScrollToLeftEdge()
|
|
ScrollToRightEdge | SteamToursAvatarCustomization.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | SteamToursAvatarCustomization.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | SteamToursAvatarCustomization.BCanSeeInParentScroll()
|
|
GetAttributeInt | SteamToursAvatarCustomization.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | SteamToursAvatarCustomization.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | SteamToursAvatarCustomization.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | SteamToursAvatarCustomization.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | SteamToursAvatarCustomization.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | SteamToursAvatarCustomization.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | SteamToursAvatarCustomization.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | SteamToursAvatarCustomization.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | SteamToursAvatarCustomization.BReadyForDisplay()
|
|
SetReadyForDisplay | SteamToursAvatarCustomization.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | SteamToursAvatarCustomization.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | SteamToursAvatarCustomization.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | SteamToursAvatarCustomization.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | SteamToursAvatarCustomization.paneltype()
|
SteamToursContentBrowser
Function | Signature | Description |
---|---|---|
visible | SteamToursContentBrowser.visible( boolean boolean_1 )
|
|
enabled | SteamToursContentBrowser.enabled( boolean boolean_1 )
|
|
checked | SteamToursContentBrowser.checked( boolean boolean_1 )
|
|
defaultfocus | SteamToursContentBrowser.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | SteamToursContentBrowser.inputnamespace( cstring cstring_1 )
|
|
hittest | SteamToursContentBrowser.hittest( boolean boolean_1 )
|
|
hittestchildren | SteamToursContentBrowser.hittestchildren( boolean boolean_1 )
|
|
tabindex | SteamToursContentBrowser.tabindex( float float_1 )
|
|
selectionpos_x | SteamToursContentBrowser.selectionpos_x( float float_1 )
|
|
selectionpos_y | SteamToursContentBrowser.selectionpos_y( float float_1 )
|
|
id | SteamToursContentBrowser.id()
|
|
layoutfile | SteamToursContentBrowser.layoutfile()
|
|
contentwidth | SteamToursContentBrowser.contentwidth()
|
|
contentheight | SteamToursContentBrowser.contentheight()
|
|
desiredlayoutwidth | SteamToursContentBrowser.desiredlayoutwidth()
|
|
desiredlayoutheight | SteamToursContentBrowser.desiredlayoutheight()
|
|
actuallayoutwidth | SteamToursContentBrowser.actuallayoutwidth()
|
|
actuallayoutheight | SteamToursContentBrowser.actuallayoutheight()
|
|
actualxoffset | SteamToursContentBrowser.actualxoffset()
|
|
actualyoffset | SteamToursContentBrowser.actualyoffset()
|
|
scrolloffset_y | SteamToursContentBrowser.scrolloffset_y()
|
|
scrolloffset_x | SteamToursContentBrowser.scrolloffset_x()
|
|
actualuiscale_y | SteamToursContentBrowser.actualuiscale_y()
|
|
actualuiscale_x | SteamToursContentBrowser.actualuiscale_x()
|
|
style | SteamToursContentBrowser.style()
|
|
AddClass | SteamToursContentBrowser.AddClass( cstring cstring_1 )
|
|
RemoveClass | SteamToursContentBrowser.RemoveClass( cstring cstring_1 )
|
|
BHasClass | SteamToursContentBrowser.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | SteamToursContentBrowser.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | SteamToursContentBrowser.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | SteamToursContentBrowser.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | SteamToursContentBrowser.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | SteamToursContentBrowser.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | SteamToursContentBrowser.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | SteamToursContentBrowser.IsDraggable()
|
|
GetChildCount | SteamToursContentBrowser.GetChildCount()
|
|
GetChild | SteamToursContentBrowser.GetChild( integer integer_1 )
|
|
GetChildIndex | SteamToursContentBrowser.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | SteamToursContentBrowser.Children()
|
|
FindChildrenWithClassTraverse | SteamToursContentBrowser.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | SteamToursContentBrowser.GetParent()
|
|
SetParent | SteamToursContentBrowser.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | SteamToursContentBrowser.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | SteamToursContentBrowser.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | SteamToursContentBrowser.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | SteamToursContentBrowser.RemoveAndDeleteChildren()
|
|
MoveChildBefore | SteamToursContentBrowser.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | SteamToursContentBrowser.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | SteamToursContentBrowser.GetPositionWithinWindow()
|
|
ApplyStyles | SteamToursContentBrowser.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | SteamToursContentBrowser.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | SteamToursContentBrowser.DeleteAsync( float float_1 )
|
|
BIsTransparent | SteamToursContentBrowser.BIsTransparent()
|
|
BAcceptsInput | SteamToursContentBrowser.BAcceptsInput()
|
|
BAcceptsFocus | SteamToursContentBrowser.BAcceptsFocus()
|
|
SetFocus | SteamToursContentBrowser.SetFocus()
|
|
UpdateFocusInContext | SteamToursContentBrowser.UpdateFocusInContext()
|
|
BHasHoverStyle | SteamToursContentBrowser.BHasHoverStyle()
|
|
SetAcceptsFocus | SteamToursContentBrowser.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | SteamToursContentBrowser.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | SteamToursContentBrowser.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | SteamToursContentBrowser.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | SteamToursContentBrowser.BScrollParentToFitWhenFocused()
|
|
IsSelected | SteamToursContentBrowser.IsSelected()
|
|
BHasDescendantKeyFocus | SteamToursContentBrowser.BHasDescendantKeyFocus()
|
|
BLoadLayout | SteamToursContentBrowser.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | SteamToursContentBrowser.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | SteamToursContentBrowser.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | SteamToursContentBrowser.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | SteamToursContentBrowser.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | SteamToursContentBrowser.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | SteamToursContentBrowser.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | SteamToursContentBrowser.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | SteamToursContentBrowser.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | SteamToursContentBrowser.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | SteamToursContentBrowser.ScrollToTop()
|
|
ScrollToBottom | SteamToursContentBrowser.ScrollToBottom()
|
|
ScrollToLeftEdge | SteamToursContentBrowser.ScrollToLeftEdge()
|
|
ScrollToRightEdge | SteamToursContentBrowser.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | SteamToursContentBrowser.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | SteamToursContentBrowser.BCanSeeInParentScroll()
|
|
GetAttributeInt | SteamToursContentBrowser.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | SteamToursContentBrowser.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | SteamToursContentBrowser.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | SteamToursContentBrowser.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | SteamToursContentBrowser.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | SteamToursContentBrowser.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | SteamToursContentBrowser.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | SteamToursContentBrowser.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | SteamToursContentBrowser.BReadyForDisplay()
|
|
SetReadyForDisplay | SteamToursContentBrowser.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | SteamToursContentBrowser.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | SteamToursContentBrowser.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | SteamToursContentBrowser.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | SteamToursContentBrowser.paneltype()
|
SteamToursFriends
Function | Signature | Description |
---|---|---|
visible | SteamToursFriends.visible( boolean boolean_1 )
|
|
enabled | SteamToursFriends.enabled( boolean boolean_1 )
|
|
checked | SteamToursFriends.checked( boolean boolean_1 )
|
|
defaultfocus | SteamToursFriends.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | SteamToursFriends.inputnamespace( cstring cstring_1 )
|
|
hittest | SteamToursFriends.hittest( boolean boolean_1 )
|
|
hittestchildren | SteamToursFriends.hittestchildren( boolean boolean_1 )
|
|
tabindex | SteamToursFriends.tabindex( float float_1 )
|
|
selectionpos_x | SteamToursFriends.selectionpos_x( float float_1 )
|
|
selectionpos_y | SteamToursFriends.selectionpos_y( float float_1 )
|
|
id | SteamToursFriends.id()
|
|
layoutfile | SteamToursFriends.layoutfile()
|
|
contentwidth | SteamToursFriends.contentwidth()
|
|
contentheight | SteamToursFriends.contentheight()
|
|
desiredlayoutwidth | SteamToursFriends.desiredlayoutwidth()
|
|
desiredlayoutheight | SteamToursFriends.desiredlayoutheight()
|
|
actuallayoutwidth | SteamToursFriends.actuallayoutwidth()
|
|
actuallayoutheight | SteamToursFriends.actuallayoutheight()
|
|
actualxoffset | SteamToursFriends.actualxoffset()
|
|
actualyoffset | SteamToursFriends.actualyoffset()
|
|
scrolloffset_y | SteamToursFriends.scrolloffset_y()
|
|
scrolloffset_x | SteamToursFriends.scrolloffset_x()
|
|
actualuiscale_y | SteamToursFriends.actualuiscale_y()
|
|
actualuiscale_x | SteamToursFriends.actualuiscale_x()
|
|
style | SteamToursFriends.style()
|
|
AddClass | SteamToursFriends.AddClass( cstring cstring_1 )
|
|
RemoveClass | SteamToursFriends.RemoveClass( cstring cstring_1 )
|
|
BHasClass | SteamToursFriends.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | SteamToursFriends.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | SteamToursFriends.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | SteamToursFriends.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | SteamToursFriends.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | SteamToursFriends.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | SteamToursFriends.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | SteamToursFriends.IsDraggable()
|
|
GetChildCount | SteamToursFriends.GetChildCount()
|
|
GetChild | SteamToursFriends.GetChild( integer integer_1 )
|
|
GetChildIndex | SteamToursFriends.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | SteamToursFriends.Children()
|
|
FindChildrenWithClassTraverse | SteamToursFriends.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | SteamToursFriends.GetParent()
|
|
SetParent | SteamToursFriends.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | SteamToursFriends.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | SteamToursFriends.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | SteamToursFriends.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | SteamToursFriends.RemoveAndDeleteChildren()
|
|
MoveChildBefore | SteamToursFriends.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | SteamToursFriends.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | SteamToursFriends.GetPositionWithinWindow()
|
|
ApplyStyles | SteamToursFriends.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | SteamToursFriends.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | SteamToursFriends.DeleteAsync( float float_1 )
|
|
BIsTransparent | SteamToursFriends.BIsTransparent()
|
|
BAcceptsInput | SteamToursFriends.BAcceptsInput()
|
|
BAcceptsFocus | SteamToursFriends.BAcceptsFocus()
|
|
SetFocus | SteamToursFriends.SetFocus()
|
|
UpdateFocusInContext | SteamToursFriends.UpdateFocusInContext()
|
|
BHasHoverStyle | SteamToursFriends.BHasHoverStyle()
|
|
SetAcceptsFocus | SteamToursFriends.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | SteamToursFriends.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | SteamToursFriends.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | SteamToursFriends.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | SteamToursFriends.BScrollParentToFitWhenFocused()
|
|
IsSelected | SteamToursFriends.IsSelected()
|
|
BHasDescendantKeyFocus | SteamToursFriends.BHasDescendantKeyFocus()
|
|
BLoadLayout | SteamToursFriends.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | SteamToursFriends.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | SteamToursFriends.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | SteamToursFriends.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | SteamToursFriends.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | SteamToursFriends.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | SteamToursFriends.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | SteamToursFriends.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | SteamToursFriends.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | SteamToursFriends.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | SteamToursFriends.ScrollToTop()
|
|
ScrollToBottom | SteamToursFriends.ScrollToBottom()
|
|
ScrollToLeftEdge | SteamToursFriends.ScrollToLeftEdge()
|
|
ScrollToRightEdge | SteamToursFriends.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | SteamToursFriends.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | SteamToursFriends.BCanSeeInParentScroll()
|
|
GetAttributeInt | SteamToursFriends.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | SteamToursFriends.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | SteamToursFriends.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | SteamToursFriends.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | SteamToursFriends.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | SteamToursFriends.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | SteamToursFriends.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | SteamToursFriends.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | SteamToursFriends.BReadyForDisplay()
|
|
SetReadyForDisplay | SteamToursFriends.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | SteamToursFriends.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | SteamToursFriends.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | SteamToursFriends.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | SteamToursFriends.paneltype()
|
SteamToursNotifications
Function | Signature | Description |
---|---|---|
visible | SteamToursNotifications.visible( boolean boolean_1 )
|
|
enabled | SteamToursNotifications.enabled( boolean boolean_1 )
|
|
checked | SteamToursNotifications.checked( boolean boolean_1 )
|
|
defaultfocus | SteamToursNotifications.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | SteamToursNotifications.inputnamespace( cstring cstring_1 )
|
|
hittest | SteamToursNotifications.hittest( boolean boolean_1 )
|
|
hittestchildren | SteamToursNotifications.hittestchildren( boolean boolean_1 )
|
|
tabindex | SteamToursNotifications.tabindex( float float_1 )
|
|
selectionpos_x | SteamToursNotifications.selectionpos_x( float float_1 )
|
|
selectionpos_y | SteamToursNotifications.selectionpos_y( float float_1 )
|
|
id | SteamToursNotifications.id()
|
|
layoutfile | SteamToursNotifications.layoutfile()
|
|
contentwidth | SteamToursNotifications.contentwidth()
|
|
contentheight | SteamToursNotifications.contentheight()
|
|
desiredlayoutwidth | SteamToursNotifications.desiredlayoutwidth()
|
|
desiredlayoutheight | SteamToursNotifications.desiredlayoutheight()
|
|
actuallayoutwidth | SteamToursNotifications.actuallayoutwidth()
|
|
actuallayoutheight | SteamToursNotifications.actuallayoutheight()
|
|
actualxoffset | SteamToursNotifications.actualxoffset()
|
|
actualyoffset | SteamToursNotifications.actualyoffset()
|
|
scrolloffset_y | SteamToursNotifications.scrolloffset_y()
|
|
scrolloffset_x | SteamToursNotifications.scrolloffset_x()
|
|
actualuiscale_y | SteamToursNotifications.actualuiscale_y()
|
|
actualuiscale_x | SteamToursNotifications.actualuiscale_x()
|
|
style | SteamToursNotifications.style()
|
|
AddClass | SteamToursNotifications.AddClass( cstring cstring_1 )
|
|
RemoveClass | SteamToursNotifications.RemoveClass( cstring cstring_1 )
|
|
BHasClass | SteamToursNotifications.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | SteamToursNotifications.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | SteamToursNotifications.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | SteamToursNotifications.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | SteamToursNotifications.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | SteamToursNotifications.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | SteamToursNotifications.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | SteamToursNotifications.IsDraggable()
|
|
GetChildCount | SteamToursNotifications.GetChildCount()
|
|
GetChild | SteamToursNotifications.GetChild( integer integer_1 )
|
|
GetChildIndex | SteamToursNotifications.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | SteamToursNotifications.Children()
|
|
FindChildrenWithClassTraverse | SteamToursNotifications.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | SteamToursNotifications.GetParent()
|
|
SetParent | SteamToursNotifications.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | SteamToursNotifications.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | SteamToursNotifications.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | SteamToursNotifications.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | SteamToursNotifications.RemoveAndDeleteChildren()
|
|
MoveChildBefore | SteamToursNotifications.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | SteamToursNotifications.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | SteamToursNotifications.GetPositionWithinWindow()
|
|
ApplyStyles | SteamToursNotifications.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | SteamToursNotifications.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | SteamToursNotifications.DeleteAsync( float float_1 )
|
|
BIsTransparent | SteamToursNotifications.BIsTransparent()
|
|
BAcceptsInput | SteamToursNotifications.BAcceptsInput()
|
|
BAcceptsFocus | SteamToursNotifications.BAcceptsFocus()
|
|
SetFocus | SteamToursNotifications.SetFocus()
|
|
UpdateFocusInContext | SteamToursNotifications.UpdateFocusInContext()
|
|
BHasHoverStyle | SteamToursNotifications.BHasHoverStyle()
|
|
SetAcceptsFocus | SteamToursNotifications.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | SteamToursNotifications.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | SteamToursNotifications.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | SteamToursNotifications.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | SteamToursNotifications.BScrollParentToFitWhenFocused()
|
|
IsSelected | SteamToursNotifications.IsSelected()
|
|
BHasDescendantKeyFocus | SteamToursNotifications.BHasDescendantKeyFocus()
|
|
BLoadLayout | SteamToursNotifications.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | SteamToursNotifications.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | SteamToursNotifications.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | SteamToursNotifications.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | SteamToursNotifications.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | SteamToursNotifications.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | SteamToursNotifications.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | SteamToursNotifications.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | SteamToursNotifications.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | SteamToursNotifications.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | SteamToursNotifications.ScrollToTop()
|
|
ScrollToBottom | SteamToursNotifications.ScrollToBottom()
|
|
ScrollToLeftEdge | SteamToursNotifications.ScrollToLeftEdge()
|
|
ScrollToRightEdge | SteamToursNotifications.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | SteamToursNotifications.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | SteamToursNotifications.BCanSeeInParentScroll()
|
|
GetAttributeInt | SteamToursNotifications.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | SteamToursNotifications.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | SteamToursNotifications.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | SteamToursNotifications.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | SteamToursNotifications.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | SteamToursNotifications.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | SteamToursNotifications.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | SteamToursNotifications.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | SteamToursNotifications.BReadyForDisplay()
|
|
SetReadyForDisplay | SteamToursNotifications.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | SteamToursNotifications.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | SteamToursNotifications.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | SteamToursNotifications.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | SteamToursNotifications.paneltype()
|
SteamToursPlayerBillboard
Function | Signature | Description |
---|---|---|
visible | SteamToursPlayerBillboard.visible( boolean boolean_1 )
|
|
enabled | SteamToursPlayerBillboard.enabled( boolean boolean_1 )
|
|
checked | SteamToursPlayerBillboard.checked( boolean boolean_1 )
|
|
defaultfocus | SteamToursPlayerBillboard.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | SteamToursPlayerBillboard.inputnamespace( cstring cstring_1 )
|
|
hittest | SteamToursPlayerBillboard.hittest( boolean boolean_1 )
|
|
hittestchildren | SteamToursPlayerBillboard.hittestchildren( boolean boolean_1 )
|
|
tabindex | SteamToursPlayerBillboard.tabindex( float float_1 )
|
|
selectionpos_x | SteamToursPlayerBillboard.selectionpos_x( float float_1 )
|
|
selectionpos_y | SteamToursPlayerBillboard.selectionpos_y( float float_1 )
|
|
id | SteamToursPlayerBillboard.id()
|
|
layoutfile | SteamToursPlayerBillboard.layoutfile()
|
|
contentwidth | SteamToursPlayerBillboard.contentwidth()
|
|
contentheight | SteamToursPlayerBillboard.contentheight()
|
|
desiredlayoutwidth | SteamToursPlayerBillboard.desiredlayoutwidth()
|
|
desiredlayoutheight | SteamToursPlayerBillboard.desiredlayoutheight()
|
|
actuallayoutwidth | SteamToursPlayerBillboard.actuallayoutwidth()
|
|
actuallayoutheight | SteamToursPlayerBillboard.actuallayoutheight()
|
|
actualxoffset | SteamToursPlayerBillboard.actualxoffset()
|
|
actualyoffset | SteamToursPlayerBillboard.actualyoffset()
|
|
scrolloffset_y | SteamToursPlayerBillboard.scrolloffset_y()
|
|
scrolloffset_x | SteamToursPlayerBillboard.scrolloffset_x()
|
|
actualuiscale_y | SteamToursPlayerBillboard.actualuiscale_y()
|
|
actualuiscale_x | SteamToursPlayerBillboard.actualuiscale_x()
|
|
style | SteamToursPlayerBillboard.style()
|
|
AddClass | SteamToursPlayerBillboard.AddClass( cstring cstring_1 )
|
|
RemoveClass | SteamToursPlayerBillboard.RemoveClass( cstring cstring_1 )
|
|
BHasClass | SteamToursPlayerBillboard.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | SteamToursPlayerBillboard.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | SteamToursPlayerBillboard.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | SteamToursPlayerBillboard.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | SteamToursPlayerBillboard.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | SteamToursPlayerBillboard.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | SteamToursPlayerBillboard.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | SteamToursPlayerBillboard.IsDraggable()
|
|
GetChildCount | SteamToursPlayerBillboard.GetChildCount()
|
|
GetChild | SteamToursPlayerBillboard.GetChild( integer integer_1 )
|
|
GetChildIndex | SteamToursPlayerBillboard.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | SteamToursPlayerBillboard.Children()
|
|
FindChildrenWithClassTraverse | SteamToursPlayerBillboard.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | SteamToursPlayerBillboard.GetParent()
|
|
SetParent | SteamToursPlayerBillboard.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | SteamToursPlayerBillboard.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | SteamToursPlayerBillboard.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | SteamToursPlayerBillboard.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | SteamToursPlayerBillboard.RemoveAndDeleteChildren()
|
|
MoveChildBefore | SteamToursPlayerBillboard.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | SteamToursPlayerBillboard.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | SteamToursPlayerBillboard.GetPositionWithinWindow()
|
|
ApplyStyles | SteamToursPlayerBillboard.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | SteamToursPlayerBillboard.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | SteamToursPlayerBillboard.DeleteAsync( float float_1 )
|
|
BIsTransparent | SteamToursPlayerBillboard.BIsTransparent()
|
|
BAcceptsInput | SteamToursPlayerBillboard.BAcceptsInput()
|
|
BAcceptsFocus | SteamToursPlayerBillboard.BAcceptsFocus()
|
|
SetFocus | SteamToursPlayerBillboard.SetFocus()
|
|
UpdateFocusInContext | SteamToursPlayerBillboard.UpdateFocusInContext()
|
|
BHasHoverStyle | SteamToursPlayerBillboard.BHasHoverStyle()
|
|
SetAcceptsFocus | SteamToursPlayerBillboard.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | SteamToursPlayerBillboard.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | SteamToursPlayerBillboard.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | SteamToursPlayerBillboard.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | SteamToursPlayerBillboard.BScrollParentToFitWhenFocused()
|
|
IsSelected | SteamToursPlayerBillboard.IsSelected()
|
|
BHasDescendantKeyFocus | SteamToursPlayerBillboard.BHasDescendantKeyFocus()
|
|
BLoadLayout | SteamToursPlayerBillboard.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | SteamToursPlayerBillboard.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | SteamToursPlayerBillboard.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | SteamToursPlayerBillboard.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | SteamToursPlayerBillboard.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | SteamToursPlayerBillboard.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | SteamToursPlayerBillboard.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | SteamToursPlayerBillboard.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | SteamToursPlayerBillboard.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | SteamToursPlayerBillboard.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | SteamToursPlayerBillboard.ScrollToTop()
|
|
ScrollToBottom | SteamToursPlayerBillboard.ScrollToBottom()
|
|
ScrollToLeftEdge | SteamToursPlayerBillboard.ScrollToLeftEdge()
|
|
ScrollToRightEdge | SteamToursPlayerBillboard.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | SteamToursPlayerBillboard.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | SteamToursPlayerBillboard.BCanSeeInParentScroll()
|
|
GetAttributeInt | SteamToursPlayerBillboard.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | SteamToursPlayerBillboard.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | SteamToursPlayerBillboard.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | SteamToursPlayerBillboard.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | SteamToursPlayerBillboard.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | SteamToursPlayerBillboard.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | SteamToursPlayerBillboard.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | SteamToursPlayerBillboard.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | SteamToursPlayerBillboard.BReadyForDisplay()
|
|
SetReadyForDisplay | SteamToursPlayerBillboard.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | SteamToursPlayerBillboard.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | SteamToursPlayerBillboard.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | SteamToursPlayerBillboard.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | SteamToursPlayerBillboard.paneltype()
|
SteamToursRecentApps
Function | Signature | Description |
---|---|---|
visible | SteamToursRecentApps.visible( boolean boolean_1 )
|
|
enabled | SteamToursRecentApps.enabled( boolean boolean_1 )
|
|
checked | SteamToursRecentApps.checked( boolean boolean_1 )
|
|
defaultfocus | SteamToursRecentApps.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | SteamToursRecentApps.inputnamespace( cstring cstring_1 )
|
|
hittest | SteamToursRecentApps.hittest( boolean boolean_1 )
|
|
hittestchildren | SteamToursRecentApps.hittestchildren( boolean boolean_1 )
|
|
tabindex | SteamToursRecentApps.tabindex( float float_1 )
|
|
selectionpos_x | SteamToursRecentApps.selectionpos_x( float float_1 )
|
|
selectionpos_y | SteamToursRecentApps.selectionpos_y( float float_1 )
|
|
id | SteamToursRecentApps.id()
|
|
layoutfile | SteamToursRecentApps.layoutfile()
|
|
contentwidth | SteamToursRecentApps.contentwidth()
|
|
contentheight | SteamToursRecentApps.contentheight()
|
|
desiredlayoutwidth | SteamToursRecentApps.desiredlayoutwidth()
|
|
desiredlayoutheight | SteamToursRecentApps.desiredlayoutheight()
|
|
actuallayoutwidth | SteamToursRecentApps.actuallayoutwidth()
|
|
actuallayoutheight | SteamToursRecentApps.actuallayoutheight()
|
|
actualxoffset | SteamToursRecentApps.actualxoffset()
|
|
actualyoffset | SteamToursRecentApps.actualyoffset()
|
|
scrolloffset_y | SteamToursRecentApps.scrolloffset_y()
|
|
scrolloffset_x | SteamToursRecentApps.scrolloffset_x()
|
|
actualuiscale_y | SteamToursRecentApps.actualuiscale_y()
|
|
actualuiscale_x | SteamToursRecentApps.actualuiscale_x()
|
|
style | SteamToursRecentApps.style()
|
|
AddClass | SteamToursRecentApps.AddClass( cstring cstring_1 )
|
|
RemoveClass | SteamToursRecentApps.RemoveClass( cstring cstring_1 )
|
|
BHasClass | SteamToursRecentApps.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | SteamToursRecentApps.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | SteamToursRecentApps.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | SteamToursRecentApps.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | SteamToursRecentApps.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | SteamToursRecentApps.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | SteamToursRecentApps.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | SteamToursRecentApps.IsDraggable()
|
|
GetChildCount | SteamToursRecentApps.GetChildCount()
|
|
GetChild | SteamToursRecentApps.GetChild( integer integer_1 )
|
|
GetChildIndex | SteamToursRecentApps.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | SteamToursRecentApps.Children()
|
|
FindChildrenWithClassTraverse | SteamToursRecentApps.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | SteamToursRecentApps.GetParent()
|
|
SetParent | SteamToursRecentApps.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | SteamToursRecentApps.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | SteamToursRecentApps.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | SteamToursRecentApps.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | SteamToursRecentApps.RemoveAndDeleteChildren()
|
|
MoveChildBefore | SteamToursRecentApps.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | SteamToursRecentApps.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | SteamToursRecentApps.GetPositionWithinWindow()
|
|
ApplyStyles | SteamToursRecentApps.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | SteamToursRecentApps.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | SteamToursRecentApps.DeleteAsync( float float_1 )
|
|
BIsTransparent | SteamToursRecentApps.BIsTransparent()
|
|
BAcceptsInput | SteamToursRecentApps.BAcceptsInput()
|
|
BAcceptsFocus | SteamToursRecentApps.BAcceptsFocus()
|
|
SetFocus | SteamToursRecentApps.SetFocus()
|
|
UpdateFocusInContext | SteamToursRecentApps.UpdateFocusInContext()
|
|
BHasHoverStyle | SteamToursRecentApps.BHasHoverStyle()
|
|
SetAcceptsFocus | SteamToursRecentApps.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | SteamToursRecentApps.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | SteamToursRecentApps.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | SteamToursRecentApps.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | SteamToursRecentApps.BScrollParentToFitWhenFocused()
|
|
IsSelected | SteamToursRecentApps.IsSelected()
|
|
BHasDescendantKeyFocus | SteamToursRecentApps.BHasDescendantKeyFocus()
|
|
BLoadLayout | SteamToursRecentApps.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | SteamToursRecentApps.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | SteamToursRecentApps.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | SteamToursRecentApps.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | SteamToursRecentApps.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | SteamToursRecentApps.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | SteamToursRecentApps.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | SteamToursRecentApps.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | SteamToursRecentApps.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | SteamToursRecentApps.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | SteamToursRecentApps.ScrollToTop()
|
|
ScrollToBottom | SteamToursRecentApps.ScrollToBottom()
|
|
ScrollToLeftEdge | SteamToursRecentApps.ScrollToLeftEdge()
|
|
ScrollToRightEdge | SteamToursRecentApps.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | SteamToursRecentApps.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | SteamToursRecentApps.BCanSeeInParentScroll()
|
|
GetAttributeInt | SteamToursRecentApps.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | SteamToursRecentApps.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | SteamToursRecentApps.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | SteamToursRecentApps.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | SteamToursRecentApps.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | SteamToursRecentApps.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | SteamToursRecentApps.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | SteamToursRecentApps.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | SteamToursRecentApps.BReadyForDisplay()
|
|
SetReadyForDisplay | SteamToursRecentApps.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | SteamToursRecentApps.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | SteamToursRecentApps.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | SteamToursRecentApps.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | SteamToursRecentApps.paneltype()
|
SteamToursUGCImage
Function | Signature | Description |
---|---|---|
visible | SteamToursUGCImage.visible( boolean boolean_1 )
|
|
enabled | SteamToursUGCImage.enabled( boolean boolean_1 )
|
|
checked | SteamToursUGCImage.checked( boolean boolean_1 )
|
|
defaultfocus | SteamToursUGCImage.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | SteamToursUGCImage.inputnamespace( cstring cstring_1 )
|
|
hittest | SteamToursUGCImage.hittest( boolean boolean_1 )
|
|
hittestchildren | SteamToursUGCImage.hittestchildren( boolean boolean_1 )
|
|
tabindex | SteamToursUGCImage.tabindex( float float_1 )
|
|
selectionpos_x | SteamToursUGCImage.selectionpos_x( float float_1 )
|
|
selectionpos_y | SteamToursUGCImage.selectionpos_y( float float_1 )
|
|
id | SteamToursUGCImage.id()
|
|
layoutfile | SteamToursUGCImage.layoutfile()
|
|
contentwidth | SteamToursUGCImage.contentwidth()
|
|
contentheight | SteamToursUGCImage.contentheight()
|
|
desiredlayoutwidth | SteamToursUGCImage.desiredlayoutwidth()
|
|
desiredlayoutheight | SteamToursUGCImage.desiredlayoutheight()
|
|
actuallayoutwidth | SteamToursUGCImage.actuallayoutwidth()
|
|
actuallayoutheight | SteamToursUGCImage.actuallayoutheight()
|
|
actualxoffset | SteamToursUGCImage.actualxoffset()
|
|
actualyoffset | SteamToursUGCImage.actualyoffset()
|
|
scrolloffset_y | SteamToursUGCImage.scrolloffset_y()
|
|
scrolloffset_x | SteamToursUGCImage.scrolloffset_x()
|
|
actualuiscale_y | SteamToursUGCImage.actualuiscale_y()
|
|
actualuiscale_x | SteamToursUGCImage.actualuiscale_x()
|
|
style | SteamToursUGCImage.style()
|
|
AddClass | SteamToursUGCImage.AddClass( cstring cstring_1 )
|
|
RemoveClass | SteamToursUGCImage.RemoveClass( cstring cstring_1 )
|
|
BHasClass | SteamToursUGCImage.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | SteamToursUGCImage.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | SteamToursUGCImage.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | SteamToursUGCImage.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | SteamToursUGCImage.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | SteamToursUGCImage.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | SteamToursUGCImage.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | SteamToursUGCImage.IsDraggable()
|
|
GetChildCount | SteamToursUGCImage.GetChildCount()
|
|
GetChild | SteamToursUGCImage.GetChild( integer integer_1 )
|
|
GetChildIndex | SteamToursUGCImage.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | SteamToursUGCImage.Children()
|
|
FindChildrenWithClassTraverse | SteamToursUGCImage.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | SteamToursUGCImage.GetParent()
|
|
SetParent | SteamToursUGCImage.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | SteamToursUGCImage.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | SteamToursUGCImage.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | SteamToursUGCImage.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | SteamToursUGCImage.RemoveAndDeleteChildren()
|
|
MoveChildBefore | SteamToursUGCImage.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | SteamToursUGCImage.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | SteamToursUGCImage.GetPositionWithinWindow()
|
|
ApplyStyles | SteamToursUGCImage.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | SteamToursUGCImage.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | SteamToursUGCImage.DeleteAsync( float float_1 )
|
|
BIsTransparent | SteamToursUGCImage.BIsTransparent()
|
|
BAcceptsInput | SteamToursUGCImage.BAcceptsInput()
|
|
BAcceptsFocus | SteamToursUGCImage.BAcceptsFocus()
|
|
SetFocus | SteamToursUGCImage.SetFocus()
|
|
UpdateFocusInContext | SteamToursUGCImage.UpdateFocusInContext()
|
|
BHasHoverStyle | SteamToursUGCImage.BHasHoverStyle()
|
|
SetAcceptsFocus | SteamToursUGCImage.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | SteamToursUGCImage.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | SteamToursUGCImage.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | SteamToursUGCImage.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | SteamToursUGCImage.BScrollParentToFitWhenFocused()
|
|
IsSelected | SteamToursUGCImage.IsSelected()
|
|
BHasDescendantKeyFocus | SteamToursUGCImage.BHasDescendantKeyFocus()
|
|
BLoadLayout | SteamToursUGCImage.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | SteamToursUGCImage.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | SteamToursUGCImage.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | SteamToursUGCImage.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | SteamToursUGCImage.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | SteamToursUGCImage.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | SteamToursUGCImage.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | SteamToursUGCImage.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | SteamToursUGCImage.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | SteamToursUGCImage.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | SteamToursUGCImage.ScrollToTop()
|
|
ScrollToBottom | SteamToursUGCImage.ScrollToBottom()
|
|
ScrollToLeftEdge | SteamToursUGCImage.ScrollToLeftEdge()
|
|
ScrollToRightEdge | SteamToursUGCImage.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | SteamToursUGCImage.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | SteamToursUGCImage.BCanSeeInParentScroll()
|
|
GetAttributeInt | SteamToursUGCImage.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | SteamToursUGCImage.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | SteamToursUGCImage.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | SteamToursUGCImage.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | SteamToursUGCImage.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | SteamToursUGCImage.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | SteamToursUGCImage.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | SteamToursUGCImage.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | SteamToursUGCImage.BReadyForDisplay()
|
|
SetReadyForDisplay | SteamToursUGCImage.SetReadyForDisplay( boolean boolean_1 )
|
|
LoadDetails | SteamToursUGCImage.LoadDetails()
|
|
SetPanelEvent | SteamToursUGCImage.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | SteamToursUGCImage.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | SteamToursUGCImage.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | SteamToursUGCImage.paneltype()
|
TrackpadUIPanel
Function | Signature | Description |
---|---|---|
visible | TrackpadUIPanel.visible( boolean boolean_1 )
|
|
enabled | TrackpadUIPanel.enabled( boolean boolean_1 )
|
|
checked | TrackpadUIPanel.checked( boolean boolean_1 )
|
|
defaultfocus | TrackpadUIPanel.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | TrackpadUIPanel.inputnamespace( cstring cstring_1 )
|
|
hittest | TrackpadUIPanel.hittest( boolean boolean_1 )
|
|
hittestchildren | TrackpadUIPanel.hittestchildren( boolean boolean_1 )
|
|
tabindex | TrackpadUIPanel.tabindex( float float_1 )
|
|
selectionpos_x | TrackpadUIPanel.selectionpos_x( float float_1 )
|
|
selectionpos_y | TrackpadUIPanel.selectionpos_y( float float_1 )
|
|
id | TrackpadUIPanel.id()
|
|
layoutfile | TrackpadUIPanel.layoutfile()
|
|
contentwidth | TrackpadUIPanel.contentwidth()
|
|
contentheight | TrackpadUIPanel.contentheight()
|
|
desiredlayoutwidth | TrackpadUIPanel.desiredlayoutwidth()
|
|
desiredlayoutheight | TrackpadUIPanel.desiredlayoutheight()
|
|
actuallayoutwidth | TrackpadUIPanel.actuallayoutwidth()
|
|
actuallayoutheight | TrackpadUIPanel.actuallayoutheight()
|
|
actualxoffset | TrackpadUIPanel.actualxoffset()
|
|
actualyoffset | TrackpadUIPanel.actualyoffset()
|
|
scrolloffset_y | TrackpadUIPanel.scrolloffset_y()
|
|
scrolloffset_x | TrackpadUIPanel.scrolloffset_x()
|
|
actualuiscale_y | TrackpadUIPanel.actualuiscale_y()
|
|
actualuiscale_x | TrackpadUIPanel.actualuiscale_x()
|
|
style | TrackpadUIPanel.style()
|
|
AddClass | TrackpadUIPanel.AddClass( cstring cstring_1 )
|
|
RemoveClass | TrackpadUIPanel.RemoveClass( cstring cstring_1 )
|
|
BHasClass | TrackpadUIPanel.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | TrackpadUIPanel.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | TrackpadUIPanel.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | TrackpadUIPanel.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | TrackpadUIPanel.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | TrackpadUIPanel.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | TrackpadUIPanel.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | TrackpadUIPanel.IsDraggable()
|
|
GetChildCount | TrackpadUIPanel.GetChildCount()
|
|
GetChild | TrackpadUIPanel.GetChild( integer integer_1 )
|
|
GetChildIndex | TrackpadUIPanel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | TrackpadUIPanel.Children()
|
|
FindChildrenWithClassTraverse | TrackpadUIPanel.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | TrackpadUIPanel.GetParent()
|
|
SetParent | TrackpadUIPanel.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | TrackpadUIPanel.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | TrackpadUIPanel.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | TrackpadUIPanel.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | TrackpadUIPanel.RemoveAndDeleteChildren()
|
|
MoveChildBefore | TrackpadUIPanel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | TrackpadUIPanel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | TrackpadUIPanel.GetPositionWithinWindow()
|
|
ApplyStyles | TrackpadUIPanel.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | TrackpadUIPanel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | TrackpadUIPanel.DeleteAsync( float float_1 )
|
|
BIsTransparent | TrackpadUIPanel.BIsTransparent()
|
|
BAcceptsInput | TrackpadUIPanel.BAcceptsInput()
|
|
BAcceptsFocus | TrackpadUIPanel.BAcceptsFocus()
|
|
SetFocus | TrackpadUIPanel.SetFocus()
|
|
UpdateFocusInContext | TrackpadUIPanel.UpdateFocusInContext()
|
|
BHasHoverStyle | TrackpadUIPanel.BHasHoverStyle()
|
|
SetAcceptsFocus | TrackpadUIPanel.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | TrackpadUIPanel.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | TrackpadUIPanel.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | TrackpadUIPanel.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | TrackpadUIPanel.BScrollParentToFitWhenFocused()
|
|
IsSelected | TrackpadUIPanel.IsSelected()
|
|
BHasDescendantKeyFocus | TrackpadUIPanel.BHasDescendantKeyFocus()
|
|
BLoadLayout | TrackpadUIPanel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | TrackpadUIPanel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | TrackpadUIPanel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | TrackpadUIPanel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | TrackpadUIPanel.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | TrackpadUIPanel.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | TrackpadUIPanel.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | TrackpadUIPanel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | TrackpadUIPanel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | TrackpadUIPanel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | TrackpadUIPanel.ScrollToTop()
|
|
ScrollToBottom | TrackpadUIPanel.ScrollToBottom()
|
|
ScrollToLeftEdge | TrackpadUIPanel.ScrollToLeftEdge()
|
|
ScrollToRightEdge | TrackpadUIPanel.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | TrackpadUIPanel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | TrackpadUIPanel.BCanSeeInParentScroll()
|
|
GetAttributeInt | TrackpadUIPanel.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | TrackpadUIPanel.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | TrackpadUIPanel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | TrackpadUIPanel.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | TrackpadUIPanel.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | TrackpadUIPanel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | TrackpadUIPanel.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | TrackpadUIPanel.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | TrackpadUIPanel.BReadyForDisplay()
|
|
SetReadyForDisplay | TrackpadUIPanel.SetReadyForDisplay( boolean boolean_1 )
|
|
SetPanelEvent | TrackpadUIPanel.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | TrackpadUIPanel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | TrackpadUIPanel.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | TrackpadUIPanel.paneltype()
|
Label
Function | Signature | Description |
---|---|---|
visible | Label.visible( boolean boolean_1 )
|
|
enabled | Label.enabled( boolean boolean_1 )
|
|
checked | Label.checked( boolean boolean_1 )
|
|
defaultfocus | Label.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | Label.inputnamespace( cstring cstring_1 )
|
|
hittest | Label.hittest( boolean boolean_1 )
|
|
hittestchildren | Label.hittestchildren( boolean boolean_1 )
|
|
tabindex | Label.tabindex( float float_1 )
|
|
selectionpos_x | Label.selectionpos_x( float float_1 )
|
|
selectionpos_y | Label.selectionpos_y( float float_1 )
|
|
id | Label.id()
|
|
layoutfile | Label.layoutfile()
|
|
contentwidth | Label.contentwidth()
|
|
contentheight | Label.contentheight()
|
|
desiredlayoutwidth | Label.desiredlayoutwidth()
|
|
desiredlayoutheight | Label.desiredlayoutheight()
|
|
actuallayoutwidth | Label.actuallayoutwidth()
|
|
actuallayoutheight | Label.actuallayoutheight()
|
|
actualxoffset | Label.actualxoffset()
|
|
actualyoffset | Label.actualyoffset()
|
|
scrolloffset_y | Label.scrolloffset_y()
|
|
scrolloffset_x | Label.scrolloffset_x()
|
|
actualuiscale_y | Label.actualuiscale_y()
|
|
actualuiscale_x | Label.actualuiscale_x()
|
|
style | Label.style()
|
|
AddClass | Label.AddClass( cstring cstring_1 )
|
|
RemoveClass | Label.RemoveClass( cstring cstring_1 )
|
|
BHasClass | Label.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | Label.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | Label.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | Label.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | Label.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | Label.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | Label.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | Label.IsDraggable()
|
|
GetChildCount | Label.GetChildCount()
|
|
GetChild | Label.GetChild( integer integer_1 )
|
|
GetChildIndex | Label.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | Label.Children()
|
|
FindChildrenWithClassTraverse | Label.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | Label.GetParent()
|
|
SetParent | Label.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | Label.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | Label.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | Label.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | Label.RemoveAndDeleteChildren()
|
|
MoveChildBefore | Label.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | Label.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | Label.GetPositionWithinWindow()
|
|
ApplyStyles | Label.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | Label.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | Label.DeleteAsync( float float_1 )
|
|
BIsTransparent | Label.BIsTransparent()
|
|
BAcceptsInput | Label.BAcceptsInput()
|
|
BAcceptsFocus | Label.BAcceptsFocus()
|
|
SetFocus | Label.SetFocus()
|
|
UpdateFocusInContext | Label.UpdateFocusInContext()
|
|
BHasHoverStyle | Label.BHasHoverStyle()
|
|
SetAcceptsFocus | Label.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | Label.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | Label.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | Label.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | Label.BScrollParentToFitWhenFocused()
|
|
IsSelected | Label.IsSelected()
|
|
BHasDescendantKeyFocus | Label.BHasDescendantKeyFocus()
|
|
BLoadLayout | Label.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | Label.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | Label.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | Label.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | Label.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | Label.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | Label.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | Label.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | Label.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | Label.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | Label.ScrollToTop()
|
|
ScrollToBottom | Label.ScrollToBottom()
|
|
ScrollToLeftEdge | Label.ScrollToLeftEdge()
|
|
ScrollToRightEdge | Label.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | Label.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | Label.BCanSeeInParentScroll()
|
|
GetAttributeInt | Label.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | Label.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | Label.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | Label.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | Label.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | Label.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | Label.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | Label.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | Label.BReadyForDisplay()
|
|
SetReadyForDisplay | Label.SetReadyForDisplay( boolean boolean_1 )
|
|
text | Label.text( cstring cstring_1 )
|
|
html | Label.html( boolean boolean_1 )
|
|
SetPanelEvent | Label.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | Label.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | Label.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | Label.paneltype()
|
DropDown
Function | Signature | Description |
---|---|---|
visible | DropDown.visible( boolean boolean_1 )
|
|
enabled | DropDown.enabled( boolean boolean_1 )
|
|
checked | DropDown.checked( boolean boolean_1 )
|
|
defaultfocus | DropDown.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | DropDown.inputnamespace( cstring cstring_1 )
|
|
hittest | DropDown.hittest( boolean boolean_1 )
|
|
hittestchildren | DropDown.hittestchildren( boolean boolean_1 )
|
|
tabindex | DropDown.tabindex( float float_1 )
|
|
selectionpos_x | DropDown.selectionpos_x( float float_1 )
|
|
selectionpos_y | DropDown.selectionpos_y( float float_1 )
|
|
id | DropDown.id()
|
|
layoutfile | DropDown.layoutfile()
|
|
contentwidth | DropDown.contentwidth()
|
|
contentheight | DropDown.contentheight()
|
|
desiredlayoutwidth | DropDown.desiredlayoutwidth()
|
|
desiredlayoutheight | DropDown.desiredlayoutheight()
|
|
actuallayoutwidth | DropDown.actuallayoutwidth()
|
|
actuallayoutheight | DropDown.actuallayoutheight()
|
|
actualxoffset | DropDown.actualxoffset()
|
|
actualyoffset | DropDown.actualyoffset()
|
|
scrolloffset_y | DropDown.scrolloffset_y()
|
|
scrolloffset_x | DropDown.scrolloffset_x()
|
|
actualuiscale_y | DropDown.actualuiscale_y()
|
|
actualuiscale_x | DropDown.actualuiscale_x()
|
|
style | DropDown.style()
|
|
AddClass | DropDown.AddClass( cstring cstring_1 )
|
|
RemoveClass | DropDown.RemoveClass( cstring cstring_1 )
|
|
BHasClass | DropDown.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | DropDown.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | DropDown.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | DropDown.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | DropDown.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | DropDown.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | DropDown.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | DropDown.IsDraggable()
|
|
GetChildCount | DropDown.GetChildCount()
|
|
GetChild | DropDown.GetChild( integer integer_1 )
|
|
GetChildIndex | DropDown.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | DropDown.Children()
|
|
FindChildrenWithClassTraverse | DropDown.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | DropDown.GetParent()
|
|
SetParent | DropDown.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | DropDown.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | DropDown.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | DropDown.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | DropDown.RemoveAndDeleteChildren()
|
|
MoveChildBefore | DropDown.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | DropDown.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | DropDown.GetPositionWithinWindow()
|
|
ApplyStyles | DropDown.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | DropDown.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | DropDown.DeleteAsync( float float_1 )
|
|
BIsTransparent | DropDown.BIsTransparent()
|
|
BAcceptsInput | DropDown.BAcceptsInput()
|
|
BAcceptsFocus | DropDown.BAcceptsFocus()
|
|
SetFocus | DropDown.SetFocus()
|
|
UpdateFocusInContext | DropDown.UpdateFocusInContext()
|
|
BHasHoverStyle | DropDown.BHasHoverStyle()
|
|
SetAcceptsFocus | DropDown.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | DropDown.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | DropDown.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | DropDown.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | DropDown.BScrollParentToFitWhenFocused()
|
|
IsSelected | DropDown.IsSelected()
|
|
BHasDescendantKeyFocus | DropDown.BHasDescendantKeyFocus()
|
|
BLoadLayout | DropDown.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | DropDown.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | DropDown.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | DropDown.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | DropDown.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | DropDown.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | DropDown.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | DropDown.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | DropDown.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | DropDown.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | DropDown.ScrollToTop()
|
|
ScrollToBottom | DropDown.ScrollToBottom()
|
|
ScrollToLeftEdge | DropDown.ScrollToLeftEdge()
|
|
ScrollToRightEdge | DropDown.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | DropDown.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | DropDown.BCanSeeInParentScroll()
|
|
GetAttributeInt | DropDown.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | DropDown.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | DropDown.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | DropDown.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | DropDown.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | DropDown.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | DropDown.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | DropDown.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | DropDown.BReadyForDisplay()
|
|
SetReadyForDisplay | DropDown.SetReadyForDisplay( boolean boolean_1 )
|
|
AddOption | DropDown.AddOption( unknown_variant_type unknown_variant_type_1 )
|
|
HasOption | DropDown.HasOption( cstring cstring_1 )
|
|
RemoveOption | DropDown.RemoveOption( cstring cstring_1 )
|
|
RemoveAllOptions | DropDown.RemoveAllOptions()
|
|
GetSelected | DropDown.GetSelected()
|
|
SetSelected | DropDown.SetSelected( cstring cstring_1 )
|
|
FindDropDownMenuChild | DropDown.FindDropDownMenuChild( cstring cstring_1 )
|
|
AccessDropDownMenu | DropDown.AccessDropDownMenu()
|
|
SetPanelEvent | DropDown.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | DropDown.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | DropDown.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | DropDown.paneltype()
|
ToggleButton
Function | Signature | Description |
---|---|---|
visible | ToggleButton.visible( boolean boolean_1 )
|
|
enabled | ToggleButton.enabled( boolean boolean_1 )
|
|
checked | ToggleButton.checked( boolean boolean_1 )
|
|
defaultfocus | ToggleButton.defaultfocus( cstring cstring_1 )
|
|
inputnamespace | ToggleButton.inputnamespace( cstring cstring_1 )
|
|
hittest | ToggleButton.hittest( boolean boolean_1 )
|
|
hittestchildren | ToggleButton.hittestchildren( boolean boolean_1 )
|
|
tabindex | ToggleButton.tabindex( float float_1 )
|
|
selectionpos_x | ToggleButton.selectionpos_x( float float_1 )
|
|
selectionpos_y | ToggleButton.selectionpos_y( float float_1 )
|
|
id | ToggleButton.id()
|
|
layoutfile | ToggleButton.layoutfile()
|
|
contentwidth | ToggleButton.contentwidth()
|
|
contentheight | ToggleButton.contentheight()
|
|
desiredlayoutwidth | ToggleButton.desiredlayoutwidth()
|
|
desiredlayoutheight | ToggleButton.desiredlayoutheight()
|
|
actuallayoutwidth | ToggleButton.actuallayoutwidth()
|
|
actuallayoutheight | ToggleButton.actuallayoutheight()
|
|
actualxoffset | ToggleButton.actualxoffset()
|
|
actualyoffset | ToggleButton.actualyoffset()
|
|
scrolloffset_y | ToggleButton.scrolloffset_y()
|
|
scrolloffset_x | ToggleButton.scrolloffset_x()
|
|
actualuiscale_y | ToggleButton.actualuiscale_y()
|
|
actualuiscale_x | ToggleButton.actualuiscale_x()
|
|
style | ToggleButton.style()
|
|
AddClass | ToggleButton.AddClass( cstring cstring_1 )
|
|
RemoveClass | ToggleButton.RemoveClass( cstring cstring_1 )
|
|
BHasClass | ToggleButton.BHasClass( cstring cstring_1 )
|
|
BAscendantHasClass | ToggleButton.BAscendantHasClass( cstring cstring_1 )
|
|
SetHasClass | ToggleButton.SetHasClass( cstring cstring_1, boolean boolean_2 )
|
|
ToggleClass | ToggleButton.ToggleClass( cstring cstring_1 )
|
|
SwitchClass | ToggleButton.SwitchClass( cstring cstring_1, cstring cstring_2 )
|
|
ClearPanelEvent | ToggleButton.ClearPanelEvent( cstring cstring_1 )
|
|
SetDraggable | ToggleButton.SetDraggable( boolean boolean_1 )
|
|
IsDraggable | ToggleButton.IsDraggable()
|
|
GetChildCount | ToggleButton.GetChildCount()
|
|
GetChild | ToggleButton.GetChild( integer integer_1 )
|
|
GetChildIndex | ToggleButton.GetChildIndex( unknown_variant_type unknown_variant_type_1 )
|
|
Children | ToggleButton.Children()
|
|
FindChildrenWithClassTraverse | ToggleButton.FindChildrenWithClassTraverse( cstring cstring_1 )
|
|
GetParent | ToggleButton.GetParent()
|
|
SetParent | ToggleButton.SetParent( unknown_variant_type unknown_variant_type_1 )
|
|
FindChild | ToggleButton.FindChild( cstring cstring_1 )
|
|
FindChildTraverse | ToggleButton.FindChildTraverse( cstring cstring_1 )
|
|
FindChildInLayoutFile | ToggleButton.FindChildInLayoutFile( cstring cstring_1 )
|
|
RemoveAndDeleteChildren | ToggleButton.RemoveAndDeleteChildren()
|
|
MoveChildBefore | ToggleButton.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
MoveChildAfter | ToggleButton.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )
|
|
GetPositionWithinWindow | ToggleButton.GetPositionWithinWindow()
|
|
ApplyStyles | ToggleButton.ApplyStyles( boolean boolean_1 )
|
|
ClearPropertyFromCode | ToggleButton.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )
|
|
DeleteAsync | ToggleButton.DeleteAsync( float float_1 )
|
|
BIsTransparent | ToggleButton.BIsTransparent()
|
|
BAcceptsInput | ToggleButton.BAcceptsInput()
|
|
BAcceptsFocus | ToggleButton.BAcceptsFocus()
|
|
SetFocus | ToggleButton.SetFocus()
|
|
UpdateFocusInContext | ToggleButton.UpdateFocusInContext()
|
|
BHasHoverStyle | ToggleButton.BHasHoverStyle()
|
|
SetAcceptsFocus | ToggleButton.SetAcceptsFocus( boolean boolean_1 )
|
|
SetDisableFocusOnMouseDown | ToggleButton.SetDisableFocusOnMouseDown( boolean boolean_1 )
|
|
BHasKeyFocus | ToggleButton.BHasKeyFocus()
|
|
SetScrollParentToFitWhenFocused | ToggleButton.SetScrollParentToFitWhenFocused( boolean boolean_1 )
|
|
BScrollParentToFitWhenFocused | ToggleButton.BScrollParentToFitWhenFocused()
|
|
IsSelected | ToggleButton.IsSelected()
|
|
BHasDescendantKeyFocus | ToggleButton.BHasDescendantKeyFocus()
|
|
BLoadLayout | ToggleButton.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutFromString | ToggleButton.BLoadLayoutFromString( js_raw_args js_raw_args_1 )
|
|
LoadLayoutFromStringAsync | ToggleButton.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
LoadLayoutAsync | ToggleButton.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )
|
|
BLoadLayoutSnippet | ToggleButton.BLoadLayoutSnippet( cstring cstring_1 )
|
|
BCreateChildren | ToggleButton.BCreateChildren( cstring cstring_1 )
|
|
SetTopOfInputContext | ToggleButton.SetTopOfInputContext( boolean boolean_1 )
|
|
SetDialogVariable | ToggleButton.SetDialogVariable( cstring cstring_1, cstring cstring_2 )
|
|
SetDialogVariableInt | ToggleButton.SetDialogVariableInt( cstring cstring_1, integer integer_2 )
|
|
SetDialogVariableTime | ToggleButton.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )
|
|
ScrollToTop | ToggleButton.ScrollToTop()
|
|
ScrollToBottom | ToggleButton.ScrollToBottom()
|
|
ScrollToLeftEdge | ToggleButton.ScrollToLeftEdge()
|
|
ScrollToRightEdge | ToggleButton.ScrollToRightEdge()
|
|
ScrollParentToMakePanelFit | ToggleButton.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )
|
|
BCanSeeInParentScroll | ToggleButton.BCanSeeInParentScroll()
|
|
GetAttributeInt | ToggleButton.GetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
GetAttributeString | ToggleButton.GetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
GetAttributeUInt32 | ToggleButton.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetAttributeInt | ToggleButton.SetAttributeInt( cstring cstring_1, integer integer_2 )
|
|
SetAttributeString | ToggleButton.SetAttributeString( cstring cstring_1, cstring cstring_2 )
|
|
SetAttributeUInt32 | ToggleButton.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )
|
|
SetInputNamespace | ToggleButton.SetInputNamespace( cstring cstring_1 )
|
|
RegisterForReadyEvents | ToggleButton.RegisterForReadyEvents( boolean boolean_1 )
|
|
BReadyForDisplay | ToggleButton.BReadyForDisplay()
|
|
SetReadyForDisplay | ToggleButton.SetReadyForDisplay( boolean boolean_1 )
|
|
SetSelected | ToggleButton.SetSelected( boolean boolean_1 )
|
|
text | ToggleButton.text( cstring cstring_1 )
|
|
SetPanelEvent | ToggleButton.SetPanelEvent( js_raw_args js_raw_args_1 )
|
|
RunScriptInPanelContext | ToggleButton.RunScriptInPanelContext( js_raw_args js_raw_args_1 )
|
|
rememberchildfocus | ToggleButton.rememberchildfocus( boolean boolean_1 )
|
|
paneltype | ToggleButton.paneltype()
|
Enumerations
SteamUGCQuery
Enumerator | Value | Description |
---|---|---|
SteamUGCQuery.RankedByVote | 0 | |
SteamUGCQuery.RankedByPublicationDate | 1 | |
SteamUGCQuery.AcceptedForGameRankedByAcceptanceDate | 2 | |
SteamUGCQuery.RankedByTrend | 3 | |
SteamUGCQuery.FavoritedByFriendsRankedByPublicationDate | 4 | |
SteamUGCQuery.CreatedByFriendsRankedByPublicationDate | 5 | |
SteamUGCQuery.RankedByNumTimesReported | 6 | |
SteamUGCQuery.CreatedByFollowedUsersRankedByPublicationDate | 7 | |
SteamUGCQuery.NotYetRated | 8 | |
SteamUGCQuery.RankedByTotalVotesAsc | 9 | |
SteamUGCQuery.RankedByVotesUp | 10 | |
SteamUGCQuery.RankedByTextSearch | 11 | |
SteamUGCQuery.RankedByTotalUniqueSubscriptions | 12 | |
SteamUGCQuery.RankedByPlaytimeTrend | 13 | |
SteamUGCQuery.RankedByTotalPlaytime | 14 | |
SteamUGCQuery.RankedByAveragePlaytimeTrend | 15 | |
SteamUGCQuery.RankedByLifetimeAveragePlaytime | 16 | |
SteamUGCQuery.RankedByPlaytimeSessionsTrend | 17 | |
SteamUGCQuery.RankedByLifetimePlaytimeSessions | 18 |
SteamUGCMatchingUGCType
Enumerator | Value | Description |
---|---|---|
SteamUGCMatchingUGCType.Items | 0 | |
SteamUGCMatchingUGCType.Items_Mtx | 1 | |
SteamUGCMatchingUGCType.Items_ReadyToUse | 2 | |
SteamUGCMatchingUGCType.Collections | 3 | |
SteamUGCMatchingUGCType.Artwork | 4 | |
SteamUGCMatchingUGCType.Videos | 5 | |
SteamUGCMatchingUGCType.Screenshots | 6 | |
SteamUGCMatchingUGCType.AllGuides | 7 | |
SteamUGCMatchingUGCType.WebGuides | 8 | |
SteamUGCMatchingUGCType.IntegratedGuides | 9 | |
SteamUGCMatchingUGCType.UsableInGame | 10 | |
SteamUGCMatchingUGCType.ControllerBindings | 11 | |
SteamUGCMatchingUGCType.GameManagedItems | 12 | |
SteamUGCMatchingUGCType.All | -1 |
SteamUniverse
Enumerator | Value | Description |
---|---|---|
SteamUniverse.Invalid | 0 | |
SteamUniverse.Internal | 3 | |
SteamUniverse.Dev | 4 | |
SteamUniverse.Beta | 2 | |
SteamUniverse.Public | 1 |