Difference between revisions of "Dota 2 Workshop Tools/Panorama/Javascript/API"
< Dota 2 Workshop Tools | Panorama | Javascript
DoctorGester (talk | contribs) (→CScriptBindingPR_Game) |
|||
Line 5: | Line 5: | ||
NOTE: Currently, the command doesn't distinguish between methods declared on a class and methods it inherits from a base class. For example, every subclass of Panel2D lists 'SetHasClass' as a method. | NOTE: Currently, the command doesn't distinguish between methods declared on a class and methods it inherits from a base class. For example, every subclass of Panel2D lists 'SetHasClass' as a method. | ||
− | Generated on | + | Generated on 29 March 2017 |
− | === | + | === CPanoramaScript_GameEvents === |
{| class="standard-table" style="width: 100%;" | {| class="standard-table" style="width: 100%;" | ||
! Function | ! Function | ||
Line 14: | Line 14: | ||
|- | |- | ||
| Subscribe | | Subscribe | ||
− | | <code>GameEvents.Subscribe( cstring pEventName, js_value funcVal )</code> | + | | <code>"GameEvents".Subscribe( cstring pEventName, js_value funcVal )</code> |
| Subscribe to a game event | | Subscribe to a game event | ||
|- | |- | ||
| Unsubscribe | | Unsubscribe | ||
− | | <code>GameEvents.Unsubscribe( integer nCallbackHandle )</code> | + | | <code>"GameEvents".Unsubscribe( integer nCallbackHandle )</code> |
| Unsubscribe from a game event | | Unsubscribe from a game event | ||
|- | |- | ||
| SendCustomGameEventToServer | | SendCustomGameEventToServer | ||
− | | <code>GameEvents.SendCustomGameEventToServer( cstring pEventName, js_object jsObject )</code> | + | | <code>"GameEvents".SendCustomGameEventToServer( cstring pEventName, js_object jsObject )</code> |
| Send a custom game event | | Send a custom game event | ||
|- | |- | ||
| SendEventClientSide | | SendEventClientSide | ||
− | | <code>GameEvents.SendEventClientSide( cstring pEventName, js_object jsObject )</code> | + | | <code>"GameEvents".SendEventClientSide( cstring pEventName, js_object jsObject )</code> |
| Send a client-side event using gameeventmanager (only useful for a few specific events) | | Send a client-side event using gameeventmanager (only useful for a few specific events) | ||
|} | |} | ||
− | === | + | === CPanoramaScript_CustomNetTables === |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{| class="standard-table" style="width: 100%;" | {| class="standard-table" style="width: 100%;" | ||
! Function | ! Function | ||
Line 142: | Line 38: | ||
|- | |- | ||
| GetTableValue | | GetTableValue | ||
− | | <code>CustomNetTables.GetTableValue( cstring pTableName, cstring pKeyName )</code> | + | | <code>"CustomNetTables".GetTableValue( cstring pTableName, cstring pKeyName )</code> |
| Get a key from a custom net table | | Get a key from a custom net table | ||
|- | |- | ||
| GetAllTableValues | | GetAllTableValues | ||
− | | <code>CustomNetTables.GetAllTableValues( cstring pTableName )</code> | + | | <code>"CustomNetTables".GetAllTableValues( cstring pTableName )</code> |
| Get all values from a custom net table | | Get all values from a custom net table | ||
|- | |- | ||
| SubscribeNetTableListener | | SubscribeNetTableListener | ||
− | | <code>CustomNetTables.SubscribeNetTableListener( js_raw_args args )</code> | + | | <code>"CustomNetTables".SubscribeNetTableListener( js_raw_args args )</code> |
| Register a callback when a particular custom net table changes | | Register a callback when a particular custom net table changes | ||
|- | |- | ||
| UnsubscribeNetTableListener | | UnsubscribeNetTableListener | ||
− | | <code>CustomNetTables.UnsubscribeNetTableListener( integer nCallbackHandle )</code> | + | | <code>"CustomNetTables".UnsubscribeNetTableListener( integer nCallbackHandle )</code> |
| Unsubscribe from a game event | | Unsubscribe from a game event | ||
|} | |} | ||
− | === | + | === $ === |
{| class="standard-table" style="width: 100%;" | {| class="standard-table" style="width: 100%;" | ||
! Function | ! Function | ||
Line 165: | Line 61: | ||
! Description | ! Description | ||
|- | |- | ||
− | | | + | | Msg |
− | | <code> | + | | <code>Msg( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Log a message |
|- | |- | ||
− | | | + | | DispatchEvent |
− | | <code> | + | | <code>DispatchEvent( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Dispatch an event |
|- | |- | ||
− | | | + | | DispatchEventAsync |
− | | <code> | + | | <code>DispatchEventAsync( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Dispatch an event to occur later |
|- | |- | ||
− | | | + | | RegisterEventHandler |
− | | <code> | + | | <code>RegisterEventHandler( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Register an event handler |
|- | |- | ||
− | | | + | | RegisterForUnhandledEvent |
− | | <code> | + | | <code>RegisterForUnhandledEvent( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Register a handler for an event that is not otherwise handled |
|- | |- | ||
− | | | + | | UnregisterForUnhandledEvent |
− | | <code> | + | | <code>UnregisterForUnhandledEvent( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Remove an unhandled event handler |
|- | |- | ||
− | | | + | | FindChildInContext |
− | | <code> | + | | <code>FindChildInContext( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Find an element |
|- | |- | ||
− | | | + | | AsyncWebRequest |
− | | <code> | + | | <code>AsyncWebRequest( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Make a web request |
|- | |- | ||
− | | | + | | CreatePanel |
− | | <code> | + | | <code>CreatePanel( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Create a new panel |
|- | |- | ||
− | | | + | | Localize |
− | | <code> | + | | <code>Localize( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Localize a string |
|- | |- | ||
− | | | + | | Language |
− | | <code> | + | | <code>Language( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Get the current language |
|- | |- | ||
− | | | + | | Schedule |
− | | <code> | + | | <code>Schedule( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Schedule a function to be called later |
|- | |- | ||
− | | | + | | CancelScheduled |
− | | <code> | + | | <code>CancelScheduled( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Cancelse a scheduled function |
|- | |- | ||
− | | | + | | GetContextPanel |
− | | <code> | + | | <code>GetContextPanel( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Get the current panel context |
|- | |- | ||
− | | | + | | RegisterKeyBind |
− | | <code> | + | | <code>RegisterKeyBind( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Register a key binding |
|- | |- | ||
− | | | + | | Each |
− | | <code> | + | | <code>Each( js_raw_args js_raw_args_1 )</code> |
− | | | + | | Call a function on each given item |
+ | |} | ||
+ | |||
+ | |||
+ | === Panel === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
|- | |- | ||
− | | | + | | visible |
− | | <code> | + | | <code>Panel.visible( boolean boolean_1 )</code> |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code> | + | | <code>Panel.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code> | + | | <code>Panel.checked( boolean boolean_1 )</code> |
− | |||
− | |||
− | |||
− | |||
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code> | + | | <code>Panel.defaultfocus( cstring cstring_1 )</code> |
− | |||
− | |||
− | |||
− | |||
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code> | + | | <code>Panel.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code> | + | | <code>Panel.hittest( boolean boolean_1 )</code> |
− | |||
− | |||
− | |||
− | |||
| | | | ||
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code> | + | | <code>Panel.hittestchildren( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | tabindex |
− | | <code> | + | | <code>Panel.tabindex( float float_1 )</code> |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code> | + | | <code>Panel.selectionpos_x( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code> | + | | <code>Panel.selectionpos_y( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | id |
− | | <code> | + | | <code>Panel.id()</code> |
| | | | ||
|- | |- | ||
− | | | + | | layoutfile |
− | | <code> | + | | <code>Panel.layoutfile()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentwidth |
− | | <code> | + | | <code>Panel.contentwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentheight |
− | | <code> | + | | <code>Panel.contentheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code> | + | | <code>Panel.desiredlayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code> | + | | <code>Panel.desiredlayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code> | + | | <code>Panel.actuallayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code> | + | | <code>Panel.actuallayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code> | + | | <code>Panel.actualxoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code> | + | | <code>Panel.actualyoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code> | + | | <code>Panel.scrolloffset_y()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code> | + | | <code>Panel.scrolloffset_x()</code> |
| | | | ||
|- | |- | ||
− | | | + | | style |
− | | <code> | + | | <code>Panel.style()</code> |
| | | | ||
|- | |- | ||
− | | | + | | AddClass |
− | | <code> | + | | <code>Panel.AddClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code> | + | | <code>Panel.RemoveClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasClass |
− | | <code> | + | | <code>Panel.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code> | + | | <code>Panel.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code> | + | | <code>Panel.ToggleClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code> | + | | <code>Panel.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code> | + | | <code>Panel.ClearPanelEvent( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code> | + | | <code>Panel.SetDraggable( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code> | + | | <code>Panel.IsDraggable()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code> | + | | <code>Panel.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code> | + | | <code>Panel.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code> | + | | <code>Panel.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code> | + | | <code>Panel.Children()</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildrenWithClassTraverse |
− | | <code> | + | | <code>Panel.FindChildrenWithClassTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetParent |
− | | <code> | + | | <code>Panel.GetParent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetParent |
− | | <code> | + | | <code>Panel.SetParent( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChild |
− | | <code> | + | | <code>Panel.FindChild( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildTraverse |
− | | <code> | + | | <code>Panel.FindChildTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildInLayoutFile |
− | | <code> | + | | <code>Panel.FindChildInLayoutFile( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveAndDeleteChildren |
− | | <code> | + | | <code>Panel.RemoveAndDeleteChildren()</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildBefore |
− | | <code> | + | | <code>Panel.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildAfter |
− | | <code> | + | | <code>Panel.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetPositionWithinWindow |
− | | <code> | + | | <code>Panel.GetPositionWithinWindow()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ApplyStyles |
− | | <code> | + | | <code>Panel.ApplyStyles( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPropertyFromCode |
− | | <code> | + | | <code>Panel.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | DeleteAsync |
− | | <code> | + | | <code>Panel.DeleteAsync( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BIsTransparent |
− | | <code> | + | | <code>Panel.BIsTransparent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsInput |
− | | <code> | + | | <code>Panel.BAcceptsInput()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsFocus |
− | | <code> | + | | <code>Panel.BAcceptsFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetFocus |
− | | <code> | + | | <code>Panel.SetFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | UpdateFocusInContext |
− | | <code> | + | | <code>Panel.UpdateFocusInContext()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasHoverStyle |
− | | <code> | + | | <code>Panel.BHasHoverStyle()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAcceptsFocus |
− | | <code> | + | | <code>Panel.SetAcceptsFocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDisableFocusOnMouseDown |
− | | <code> | + | | <code>Panel.SetDisableFocusOnMouseDown( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasKeyFocus |
− | | <code> | + | | <code>Panel.BHasKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetScrollParentToFitWhenFocused |
− | | <code> | + | | <code>Panel.SetScrollParentToFitWhenFocused( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BScrollParentToFitWhenFocused |
− | | <code> | + | | <code>Panel.BScrollParentToFitWhenFocused()</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsSelected |
− | | <code> | + | | <code>Panel.IsSelected()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasDescendantKeyFocus |
− | | <code> | + | | <code>Panel.BHasDescendantKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayout |
− | | <code> | + | | <code>Panel.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutFromString |
− | | <code> | + | | <code>Panel.BLoadLayoutFromString( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutFromStringAsync |
− | | <code> | + | | <code>Panel.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutAsync |
− | | <code> | + | | <code>Panel.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutSnippet |
− | | <code> | + | | <code>Panel.BLoadLayoutSnippet( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCreateChildren |
− | | <code> | + | | <code>Panel.BCreateChildren( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetTopOfInputContext |
− | | <code> | + | | <code>Panel.SetTopOfInputContext( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariable |
− | | <code> | + | | <code>Panel.SetDialogVariable( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableInt |
− | | <code> | + | | <code>Panel.SetDialogVariableInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableTime |
− | | <code> | + | | <code>Panel.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToTop |
− | | <code> | + | | <code>Panel.ScrollToTop()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToBottom |
− | | <code> | + | | <code>Panel.ScrollToBottom()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToLeftEdge |
− | | <code> | + | | <code>Panel.ScrollToLeftEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToRightEdge |
− | | <code> | + | | <code>Panel.ScrollToRightEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollParentToMakePanelFit |
− | | <code> | + | | <code>Panel.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCanSeeInParentScroll |
− | | <code> | + | | <code>Panel.BCanSeeInParentScroll()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeInt |
− | | <code> | + | | <code>Panel.GetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeString |
− | | <code> | + | | <code>Panel.GetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeUInt32 |
− | | <code> | + | | <code>Panel.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeInt |
− | | <code> | + | | <code>Panel.SetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeString |
− | | <code> | + | | <code>Panel.SetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeUInt32 |
− | | <code> | + | | <code>Panel.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetInputNamespace |
− | | <code> | + | | <code>Panel.SetInputNamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RegisterForReadyEvents |
− | | <code> | + | | <code>Panel.RegisterForReadyEvents( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BReadyForDisplay |
− | | <code> | + | | <code>Panel.BReadyForDisplay()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetReadyForDisplay |
− | | <code> | + | | <code>Panel.SetReadyForDisplay( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetPanelEvent |
− | | <code> | + | | <code>Panel.SetPanelEvent( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RunScriptInPanelContext |
− | | <code> | + | | <code>Panel.RunScriptInPanelContext( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | rememberchildfocus |
− | | <code> | + | | <code>Panel.rememberchildfocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | paneltype |
− | | <code> | + | | <code>Panel.paneltype()</code> |
| | | | ||
+ | |} | ||
+ | |||
+ | |||
+ | === DOTACustomUIRoot === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
|- | |- | ||
− | | | + | | visible |
− | | <code> | + | | <code>DOTACustomUIRoot.visible( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code> | + | | <code>DOTACustomUIRoot.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code> | + | | <code>DOTACustomUIRoot.checked( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code> | + | | <code>DOTACustomUIRoot.defaultfocus( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code> | + | | <code>DOTACustomUIRoot.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code> | + | | <code>DOTACustomUIRoot.hittest( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code> | + | | <code>DOTACustomUIRoot.hittestchildren( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | tabindex |
− | | <code> | + | | <code>DOTACustomUIRoot.tabindex( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code> | + | | <code>DOTACustomUIRoot.selectionpos_x( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code> | + | | <code>DOTACustomUIRoot.selectionpos_y( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | id |
− | | <code> | + | | <code>DOTACustomUIRoot.id()</code> |
| | | | ||
|- | |- | ||
− | | | + | | layoutfile |
− | | <code> | + | | <code>DOTACustomUIRoot.layoutfile()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentwidth |
− | | <code> | + | | <code>DOTACustomUIRoot.contentwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentheight |
− | | <code> | + | | <code>DOTACustomUIRoot.contentheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code> | + | | <code>DOTACustomUIRoot.desiredlayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code> | + | | <code>DOTACustomUIRoot.desiredlayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code> | + | | <code>DOTACustomUIRoot.actuallayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code> | + | | <code>DOTACustomUIRoot.actuallayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code> | + | | <code>DOTACustomUIRoot.actualxoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code> | + | | <code>DOTACustomUIRoot.actualyoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code> | + | | <code>DOTACustomUIRoot.scrolloffset_y()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code> | + | | <code>DOTACustomUIRoot.scrolloffset_x()</code> |
| | | | ||
|- | |- | ||
− | | | + | | style |
− | | <code> | + | | <code>DOTACustomUIRoot.style()</code> |
| | | | ||
|- | |- | ||
− | | | + | | AddClass |
− | | <code> | + | | <code>DOTACustomUIRoot.AddClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code> | + | | <code>DOTACustomUIRoot.RemoveClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasClass |
− | | <code> | + | | <code>DOTACustomUIRoot.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code> | + | | <code>DOTACustomUIRoot.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code> | + | | <code>DOTACustomUIRoot.ToggleClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code> | + | | <code>DOTACustomUIRoot.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code> | + | | <code>DOTACustomUIRoot.ClearPanelEvent( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code> | + | | <code>DOTACustomUIRoot.SetDraggable( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code> | + | | <code>DOTACustomUIRoot.IsDraggable()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code> | + | | <code>DOTACustomUIRoot.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code> | + | | <code>DOTACustomUIRoot.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code> | + | | <code>DOTACustomUIRoot.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code> | + | | <code>DOTACustomUIRoot.Children()</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildrenWithClassTraverse |
− | | <code> | + | | <code>DOTACustomUIRoot.FindChildrenWithClassTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetParent |
− | | <code> | + | | <code>DOTACustomUIRoot.GetParent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetParent |
− | | <code> | + | | <code>DOTACustomUIRoot.SetParent( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChild |
− | | <code> | + | | <code>DOTACustomUIRoot.FindChild( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildTraverse |
− | | <code> | + | | <code>DOTACustomUIRoot.FindChildTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildInLayoutFile |
− | | <code> | + | | <code>DOTACustomUIRoot.FindChildInLayoutFile( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveAndDeleteChildren |
− | | <code> | + | | <code>DOTACustomUIRoot.RemoveAndDeleteChildren()</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildBefore |
− | | <code> | + | | <code>DOTACustomUIRoot.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildAfter |
− | | <code> | + | | <code>DOTACustomUIRoot.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetPositionWithinWindow |
− | | <code> | + | | <code>DOTACustomUIRoot.GetPositionWithinWindow()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ApplyStyles |
− | | <code> | + | | <code>DOTACustomUIRoot.ApplyStyles( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPropertyFromCode |
− | | <code> | + | | <code>DOTACustomUIRoot.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | DeleteAsync |
− | | <code> | + | | <code>DOTACustomUIRoot.DeleteAsync( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BIsTransparent |
− | | <code> | + | | <code>DOTACustomUIRoot.BIsTransparent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsInput |
− | | <code> | + | | <code>DOTACustomUIRoot.BAcceptsInput()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsFocus |
− | | <code> | + | | <code>DOTACustomUIRoot.BAcceptsFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetFocus |
− | | <code> | + | | <code>DOTACustomUIRoot.SetFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | UpdateFocusInContext |
− | | <code> | + | | <code>DOTACustomUIRoot.UpdateFocusInContext()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasHoverStyle |
− | | <code> | + | | <code>DOTACustomUIRoot.BHasHoverStyle()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAcceptsFocus |
− | | <code> | + | | <code>DOTACustomUIRoot.SetAcceptsFocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDisableFocusOnMouseDown |
− | | <code> | + | | <code>DOTACustomUIRoot.SetDisableFocusOnMouseDown( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasKeyFocus |
− | | <code> | + | | <code>DOTACustomUIRoot.BHasKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTACustomUIRoot.SetScrollParentToFitWhenFocused( boolean boolean_1 )</code> |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
| | | | ||
|- | |- | ||
− | | | + | | BScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTACustomUIRoot.BScrollParentToFitWhenFocused()</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsSelected |
− | | <code> | + | | <code>DOTACustomUIRoot.IsSelected()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasDescendantKeyFocus |
− | | <code> | + | | <code>DOTACustomUIRoot.BHasDescendantKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayout |
− | | <code> | + | | <code>DOTACustomUIRoot.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutFromString |
− | | <code> | + | | <code>DOTACustomUIRoot.BLoadLayoutFromString( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutFromStringAsync |
− | | <code> | + | | <code>DOTACustomUIRoot.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutAsync |
− | | <code> | + | | <code>DOTACustomUIRoot.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutSnippet |
− | | <code> | + | | <code>DOTACustomUIRoot.BLoadLayoutSnippet( cstring cstring_1 )</code> |
− | |||
− | |||
− | |||
− | |||
| | | | ||
|- | |- | ||
− | | | + | | BCreateChildren |
− | | <code> | + | | <code>DOTACustomUIRoot.BCreateChildren( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetTopOfInputContext |
− | | <code> | + | | <code>DOTACustomUIRoot.SetTopOfInputContext( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariable |
− | | <code> | + | | <code>DOTACustomUIRoot.SetDialogVariable( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableInt |
− | | <code> | + | | <code>DOTACustomUIRoot.SetDialogVariableInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableTime |
− | | <code> | + | | <code>DOTACustomUIRoot.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToTop |
− | | <code> | + | | <code>DOTACustomUIRoot.ScrollToTop()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToBottom |
− | | <code> | + | | <code>DOTACustomUIRoot.ScrollToBottom()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToLeftEdge |
− | | <code> | + | | <code>DOTACustomUIRoot.ScrollToLeftEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToRightEdge |
− | | <code> | + | | <code>DOTACustomUIRoot.ScrollToRightEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollParentToMakePanelFit |
− | | <code> | + | | <code>DOTACustomUIRoot.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCanSeeInParentScroll |
− | | <code> | + | | <code>DOTACustomUIRoot.BCanSeeInParentScroll()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeInt |
− | | <code> | + | | <code>DOTACustomUIRoot.GetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeString |
− | | <code> | + | | <code>DOTACustomUIRoot.GetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeUInt32 |
− | | <code> | + | | <code>DOTACustomUIRoot.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeInt |
− | | <code> | + | | <code>DOTACustomUIRoot.SetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeString |
− | | <code> | + | | <code>DOTACustomUIRoot.SetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeUInt32 |
− | | <code> | + | | <code>DOTACustomUIRoot.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetInputNamespace |
− | | <code> | + | | <code>DOTACustomUIRoot.SetInputNamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RegisterForReadyEvents |
− | | <code> | + | | <code>DOTACustomUIRoot.RegisterForReadyEvents( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BReadyForDisplay |
− | | <code> | + | | <code>DOTACustomUIRoot.BReadyForDisplay()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetReadyForDisplay |
− | | <code> | + | | <code>DOTACustomUIRoot.SetReadyForDisplay( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetPanelEvent |
− | | <code> | + | | <code>DOTACustomUIRoot.SetPanelEvent( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RunScriptInPanelContext |
− | | <code> | + | | <code>DOTACustomUIRoot.RunScriptInPanelContext( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | rememberchildfocus |
− | | <code> | + | | <code>DOTACustomUIRoot.rememberchildfocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | paneltype |
− | | <code> | + | | <code>DOTACustomUIRoot.paneltype()</code> |
| | | | ||
+ | |} | ||
+ | |||
+ | |||
+ | === DOTAHud === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
|- | |- | ||
− | | | + | | visible |
− | | <code> | + | | <code>DOTAHud.visible( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code> | + | | <code>DOTAHud.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code> | + | | <code>DOTAHud.checked( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code> | + | | <code>DOTAHud.defaultfocus( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code> | + | | <code>DOTAHud.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code> | + | | <code>DOTAHud.hittest( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code> | + | | <code>DOTAHud.hittestchildren( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | tabindex |
− | | <code> | + | | <code>DOTAHud.tabindex( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code> | + | | <code>DOTAHud.selectionpos_x( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code> | + | | <code>DOTAHud.selectionpos_y( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | id |
− | | <code> | + | | <code>DOTAHud.id()</code> |
| | | | ||
|- | |- | ||
− | | | + | | layoutfile |
− | | <code> | + | | <code>DOTAHud.layoutfile()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentwidth |
− | | <code> | + | | <code>DOTAHud.contentwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentheight |
− | | <code> | + | | <code>DOTAHud.contentheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code> | + | | <code>DOTAHud.desiredlayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code> | + | | <code>DOTAHud.desiredlayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code> | + | | <code>DOTAHud.actuallayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code> | + | | <code>DOTAHud.actuallayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code> | + | | <code>DOTAHud.actualxoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code> | + | | <code>DOTAHud.actualyoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code> | + | | <code>DOTAHud.scrolloffset_y()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code> | + | | <code>DOTAHud.scrolloffset_x()</code> |
| | | | ||
|- | |- | ||
− | | | + | | style |
− | | <code> | + | | <code>DOTAHud.style()</code> |
| | | | ||
|- | |- | ||
− | | | + | | AddClass |
− | | <code> | + | | <code>DOTAHud.AddClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code> | + | | <code>DOTAHud.RemoveClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasClass |
− | | <code> | + | | <code>DOTAHud.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code> | + | | <code>DOTAHud.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code> | + | | <code>DOTAHud.ToggleClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code> | + | | <code>DOTAHud.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code> | + | | <code>DOTAHud.ClearPanelEvent( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code> | + | | <code>DOTAHud.SetDraggable( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code> | + | | <code>DOTAHud.IsDraggable()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code> | + | | <code>DOTAHud.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code> | + | | <code>DOTAHud.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code> | + | | <code>DOTAHud.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code> | + | | <code>DOTAHud.Children()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | FindChildrenWithClassTraverse |
− | | <code> | + | | <code>DOTAHud.FindChildrenWithClassTraverse( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | GetParent |
− | | <code> | + | | <code>DOTAHud.GetParent()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetParent |
− | | <code> | + | | <code>DOTAHud.SetParent( unknown_variant_type unknown_variant_type_1 )</code> |
− | | | + | | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | FindChild |
− | | <code> | + | | <code>DOTAHud.FindChild( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildTraverse |
− | | <code> | + | | <code>DOTAHud.FindChildTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildInLayoutFile |
− | | <code> | + | | <code>DOTAHud.FindChildInLayoutFile( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveAndDeleteChildren |
− | | <code> | + | | <code>DOTAHud.RemoveAndDeleteChildren()</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildBefore |
− | | <code> | + | | <code>DOTAHud.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildAfter |
− | | <code> | + | | <code>DOTAHud.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetPositionWithinWindow |
− | | <code> | + | | <code>DOTAHud.GetPositionWithinWindow()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ApplyStyles |
− | | <code> | + | | <code>DOTAHud.ApplyStyles( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPropertyFromCode |
− | | <code> | + | | <code>DOTAHud.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | DeleteAsync |
− | | <code> | + | | <code>DOTAHud.DeleteAsync( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BIsTransparent |
− | | <code> | + | | <code>DOTAHud.BIsTransparent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsInput |
− | | <code> | + | | <code>DOTAHud.BAcceptsInput()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsFocus |
− | | <code> | + | | <code>DOTAHud.BAcceptsFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetFocus |
− | | <code> | + | | <code>DOTAHud.SetFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | UpdateFocusInContext |
− | | <code> | + | | <code>DOTAHud.UpdateFocusInContext()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasHoverStyle |
− | | <code> | + | | <code>DOTAHud.BHasHoverStyle()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAcceptsFocus |
− | | <code> | + | | <code>DOTAHud.SetAcceptsFocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDisableFocusOnMouseDown |
− | | <code> | + | | <code>DOTAHud.SetDisableFocusOnMouseDown( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasKeyFocus |
− | | <code> | + | | <code>DOTAHud.BHasKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTAHud.SetScrollParentToFitWhenFocused( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTAHud.BScrollParentToFitWhenFocused()</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsSelected |
− | | <code> | + | | <code>DOTAHud.IsSelected()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasDescendantKeyFocus |
− | | <code> | + | | <code>DOTAHud.BHasDescendantKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayout |
− | | <code> | + | | <code>DOTAHud.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutFromString |
− | | <code> | + | | <code>DOTAHud.BLoadLayoutFromString( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutFromStringAsync |
− | | <code> | + | | <code>DOTAHud.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutAsync |
− | | <code> | + | | <code>DOTAHud.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutSnippet |
− | | <code> | + | | <code>DOTAHud.BLoadLayoutSnippet( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCreateChildren |
− | | <code> | + | | <code>DOTAHud.BCreateChildren( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetTopOfInputContext |
− | | <code> | + | | <code>DOTAHud.SetTopOfInputContext( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariable |
− | | <code> | + | | <code>DOTAHud.SetDialogVariable( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableInt |
− | | <code> | + | | <code>DOTAHud.SetDialogVariableInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableTime |
− | | <code> | + | | <code>DOTAHud.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToTop |
− | | <code> | + | | <code>DOTAHud.ScrollToTop()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | ScrollToBottom |
− | | <code> | + | | <code>DOTAHud.ScrollToBottom()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | ScrollToLeftEdge |
− | | <code> | + | | <code>DOTAHud.ScrollToLeftEdge()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | ScrollToRightEdge |
− | | <code> | + | | <code>DOTAHud.ScrollToRightEdge()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | ScrollParentToMakePanelFit |
− | | <code> | + | | <code>DOTAHud.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )</code> |
− | | | + | | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | BCanSeeInParentScroll |
− | | <code> | + | | <code>DOTAHud.BCanSeeInParentScroll()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeInt |
− | | <code> | + | | <code>DOTAHud.GetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeString |
− | | <code> | + | | <code>DOTAHud.GetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeUInt32 |
− | | <code> | + | | <code>DOTAHud.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetAttributeInt |
− | | <code> | + | | <code>DOTAHud.SetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeString |
− | | <code> | + | | <code>DOTAHud.SetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetAttributeUInt32 |
− | | <code> | + | | <code>DOTAHud.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetInputNamespace |
− | | <code> | + | | <code>DOTAHud.SetInputNamespace( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | RegisterForReadyEvents |
− | | <code> | + | | <code>DOTAHud.RegisterForReadyEvents( boolean boolean_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | BReadyForDisplay |
− | | <code> | + | | <code>DOTAHud.BReadyForDisplay()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetReadyForDisplay |
− | | <code> | + | | <code>DOTAHud.SetReadyForDisplay( boolean boolean_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetPanelEvent |
− | | <code> | + | | <code>DOTAHud.SetPanelEvent( js_raw_args js_raw_args_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | RunScriptInPanelContext |
− | | <code> | + | | <code>DOTAHud.RunScriptInPanelContext( js_raw_args js_raw_args_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | rememberchildfocus |
− | | <code> | + | | <code>DOTAHud.rememberchildfocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | paneltype |
− | | <code> | + | | <code>DOTAHud.paneltype()</code> |
| | | | ||
+ | |} | ||
+ | |||
+ | |||
+ | === DOTARadarButton === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
|- | |- | ||
− | | | + | | visible |
− | | <code> | + | | <code>DOTARadarButton.visible( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code> | + | | <code>DOTARadarButton.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code> | + | | <code>DOTARadarButton.checked( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code> | + | | <code>DOTARadarButton.defaultfocus( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code> | + | | <code>DOTARadarButton.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code> | + | | <code>DOTARadarButton.hittest( boolean boolean_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code> | + | | <code>DOTARadarButton.hittestchildren( boolean boolean_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | tabindex |
− | | <code> | + | | <code>DOTARadarButton.tabindex( float float_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code> | + | | <code>DOTARadarButton.selectionpos_x( float float_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code> | + | | <code>DOTARadarButton.selectionpos_y( float float_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | id |
− | | <code> | + | | <code>DOTARadarButton.id()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | layoutfile |
− | | <code> | + | | <code>DOTARadarButton.layoutfile()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | contentwidth |
− | | <code> | + | | <code>DOTARadarButton.contentwidth()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | contentheight |
− | | <code> | + | | <code>DOTARadarButton.contentheight()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code> | + | | <code>DOTARadarButton.desiredlayoutwidth()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code> | + | | <code>DOTARadarButton.desiredlayoutheight()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code> | + | | <code>DOTARadarButton.actuallayoutwidth()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code> | + | | <code>DOTARadarButton.actuallayoutheight()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code> | + | | <code>DOTARadarButton.actualxoffset()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code> | + | | <code>DOTARadarButton.actualyoffset()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code> | + | | <code>DOTARadarButton.scrolloffset_y()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code> | + | | <code>DOTARadarButton.scrolloffset_x()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | style |
− | | <code> | + | | <code>DOTARadarButton.style()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | AddClass |
− | | <code> | + | | <code>DOTARadarButton.AddClass( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code> | + | | <code>DOTARadarButton.RemoveClass( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | BHasClass |
− | | <code> | + | | <code>DOTARadarButton.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code> | + | | <code>DOTARadarButton.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code> | + | | <code>DOTARadarButton.ToggleClass( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code> | + | | <code>DOTARadarButton.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code> | + | | <code>DOTARadarButton.ClearPanelEvent( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code> | + | | <code>DOTARadarButton.SetDraggable( boolean boolean_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code> | + | | <code>DOTARadarButton.IsDraggable()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code> | + | | <code>DOTARadarButton.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code> | + | | <code>DOTARadarButton.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code> | + | | <code>DOTARadarButton.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code> | + | | <code>DOTARadarButton.Children()</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildrenWithClassTraverse |
− | | <code> | + | | <code>DOTARadarButton.FindChildrenWithClassTraverse( cstring cstring_1 )</code> |
+ | | | ||
+ | |- | ||
+ | | GetParent | ||
+ | | <code>DOTARadarButton.GetParent()</code> | ||
| | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | SetParent |
− | | <code> | + | | <code>DOTARadarButton.SetParent( unknown_variant_type unknown_variant_type_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | FindChild |
− | | <code> | + | | <code>DOTARadarButton.FindChild( cstring cstring_1 )</code> |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
| | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | FindChildTraverse |
− | | <code> | + | | <code>DOTARadarButton.FindChildTraverse( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | FindChildInLayoutFile |
− | | <code> | + | | <code>DOTARadarButton.FindChildInLayoutFile( cstring cstring_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | RemoveAndDeleteChildren |
− | | <code> | + | | <code>DOTARadarButton.RemoveAndDeleteChildren()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | MoveChildBefore |
− | | <code> | + | | <code>DOTARadarButton.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | MoveChildAfter |
− | | <code> | + | | <code>DOTARadarButton.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | GetPositionWithinWindow |
− | | <code> | + | | <code>DOTARadarButton.GetPositionWithinWindow()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | ApplyStyles |
− | | <code> | + | | <code>DOTARadarButton.ApplyStyles( boolean boolean_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | ClearPropertyFromCode |
− | | <code> | + | | <code>DOTARadarButton.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | DeleteAsync |
− | | <code> | + | | <code>DOTARadarButton.DeleteAsync( float float_1 )</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | BIsTransparent |
− | | <code> | + | | <code>DOTARadarButton.BIsTransparent()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | BAcceptsInput |
− | | <code> | + | | <code>DOTARadarButton.BAcceptsInput()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | BAcceptsFocus |
− | | <code> | + | | <code>DOTARadarButton.BAcceptsFocus()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetFocus |
− | | <code> | + | | <code>DOTARadarButton.SetFocus()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | UpdateFocusInContext |
− | | <code> | + | | <code>DOTARadarButton.UpdateFocusInContext()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | BHasHoverStyle |
− | | <code> | + | | <code>DOTARadarButton.BHasHoverStyle()</code> |
− | | | + | | |
|- | |- | ||
− | | | + | | SetAcceptsFocus |
− | | <code> | + | | <code>DOTARadarButton.SetAcceptsFocus( boolean boolean_1 )</code> |
− | | | + | | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | SetDisableFocusOnMouseDown |
− | | <code> | + | | <code>DOTARadarButton.SetDisableFocusOnMouseDown( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasKeyFocus |
− | | <code> | + | | <code>DOTARadarButton.BHasKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTARadarButton.SetScrollParentToFitWhenFocused( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTARadarButton.BScrollParentToFitWhenFocused()</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsSelected |
− | | <code> | + | | <code>DOTARadarButton.IsSelected()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasDescendantKeyFocus |
− | | <code> | + | | <code>DOTARadarButton.BHasDescendantKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayout |
− | | <code> | + | | <code>DOTARadarButton.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutFromString |
− | | <code> | + | | <code>DOTARadarButton.BLoadLayoutFromString( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutFromStringAsync |
− | | <code> | + | | <code>DOTARadarButton.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutAsync |
− | | <code> | + | | <code>DOTARadarButton.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutSnippet |
− | | <code> | + | | <code>DOTARadarButton.BLoadLayoutSnippet( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCreateChildren |
− | | <code> | + | | <code>DOTARadarButton.BCreateChildren( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetTopOfInputContext |
− | | <code> | + | | <code>DOTARadarButton.SetTopOfInputContext( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariable |
− | | <code> | + | | <code>DOTARadarButton.SetDialogVariable( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableInt |
− | | <code> | + | | <code>DOTARadarButton.SetDialogVariableInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableTime |
− | | <code> | + | | <code>DOTARadarButton.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToTop |
− | | <code> | + | | <code>DOTARadarButton.ScrollToTop()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToBottom |
− | | <code> | + | | <code>DOTARadarButton.ScrollToBottom()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToLeftEdge |
− | | <code> | + | | <code>DOTARadarButton.ScrollToLeftEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToRightEdge |
− | | <code> | + | | <code>DOTARadarButton.ScrollToRightEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollParentToMakePanelFit |
− | | <code> | + | | <code>DOTARadarButton.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCanSeeInParentScroll |
− | | <code> | + | | <code>DOTARadarButton.BCanSeeInParentScroll()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeInt |
− | | <code> | + | | <code>DOTARadarButton.GetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeString |
− | | <code> | + | | <code>DOTARadarButton.GetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeUInt32 |
− | | <code> | + | | <code>DOTARadarButton.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeInt |
− | | <code> | + | | <code>DOTARadarButton.SetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeString |
− | | <code> | + | | <code>DOTARadarButton.SetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeUInt32 |
− | | <code> | + | | <code>DOTARadarButton.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetInputNamespace |
− | | <code> | + | | <code>DOTARadarButton.SetInputNamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RegisterForReadyEvents |
− | | <code> | + | | <code>DOTARadarButton.RegisterForReadyEvents( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BReadyForDisplay |
− | | <code> | + | | <code>DOTARadarButton.BReadyForDisplay()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetReadyForDisplay |
− | | <code> | + | | <code>DOTARadarButton.SetReadyForDisplay( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetPanelEvent |
− | | <code> | + | | <code>DOTARadarButton.SetPanelEvent( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RunScriptInPanelContext |
− | | <code> | + | | <code>DOTARadarButton.RunScriptInPanelContext( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | rememberchildfocus |
− | | <code> | + | | <code>DOTARadarButton.rememberchildfocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | paneltype |
− | | <code> | + | | <code>DOTARadarButton.paneltype()</code> |
| | | | ||
− | |- | + | |} |
− | | | + | |
− | | <code> | + | |
+ | === DOTAAbilityList === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
+ | |- | ||
+ | | visible | ||
+ | | <code>DOTAAbilityList.visible( boolean boolean_1 )</code> | ||
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code> | + | | <code>DOTAAbilityList.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code> | + | | <code>DOTAAbilityList.checked( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code> | + | | <code>DOTAAbilityList.defaultfocus( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code> | + | | <code>DOTAAbilityList.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code> | + | | <code>DOTAAbilityList.hittest( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code> | + | | <code>DOTAAbilityList.hittestchildren( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | tabindex |
− | | <code> | + | | <code>DOTAAbilityList.tabindex( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code> | + | | <code>DOTAAbilityList.selectionpos_x( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code> | + | | <code>DOTAAbilityList.selectionpos_y( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | id |
− | | <code> | + | | <code>DOTAAbilityList.id()</code> |
| | | | ||
|- | |- | ||
− | | | + | | layoutfile |
− | | <code> | + | | <code>DOTAAbilityList.layoutfile()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentwidth |
− | | <code> | + | | <code>DOTAAbilityList.contentwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentheight |
− | | <code> | + | | <code>DOTAAbilityList.contentheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code> | + | | <code>DOTAAbilityList.desiredlayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code> | + | | <code>DOTAAbilityList.desiredlayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code> | + | | <code>DOTAAbilityList.actuallayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code> | + | | <code>DOTAAbilityList.actuallayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code> | + | | <code>DOTAAbilityList.actualxoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code> | + | | <code>DOTAAbilityList.actualyoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code> | + | | <code>DOTAAbilityList.scrolloffset_y()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code> | + | | <code>DOTAAbilityList.scrolloffset_x()</code> |
| | | | ||
|- | |- | ||
− | | | + | | style |
− | | <code> | + | | <code>DOTAAbilityList.style()</code> |
| | | | ||
|- | |- | ||
− | | | + | | AddClass |
− | | <code> | + | | <code>DOTAAbilityList.AddClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code> | + | | <code>DOTAAbilityList.RemoveClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasClass |
− | | <code> | + | | <code>DOTAAbilityList.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code> | + | | <code>DOTAAbilityList.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code> | + | | <code>DOTAAbilityList.ToggleClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code> | + | | <code>DOTAAbilityList.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code> | + | | <code>DOTAAbilityList.ClearPanelEvent( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code> | + | | <code>DOTAAbilityList.SetDraggable( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code> | + | | <code>DOTAAbilityList.IsDraggable()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code> | + | | <code>DOTAAbilityList.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code> | + | | <code>DOTAAbilityList.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code> | + | | <code>DOTAAbilityList.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code> | + | | <code>DOTAAbilityList.Children()</code> |
+ | | | ||
+ | |- | ||
+ | | FindChildrenWithClassTraverse | ||
+ | | <code>DOTAAbilityList.FindChildrenWithClassTraverse( cstring cstring_1 )</code> | ||
| | | | ||
|- | |- | ||
− | | | + | | GetParent |
− | | <code> | + | | <code>DOTAAbilityList.GetParent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetParent |
− | | <code> | + | | <code>DOTAAbilityList.SetParent( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChild |
− | | <code> | + | | <code>DOTAAbilityList.FindChild( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildTraverse |
− | | <code> | + | | <code>DOTAAbilityList.FindChildTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildInLayoutFile |
− | | <code> | + | | <code>DOTAAbilityList.FindChildInLayoutFile( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveAndDeleteChildren |
− | | <code> | + | | <code>DOTAAbilityList.RemoveAndDeleteChildren()</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildBefore |
− | | <code> | + | | <code>DOTAAbilityList.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildAfter |
− | | <code> | + | | <code>DOTAAbilityList.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetPositionWithinWindow |
− | | <code> | + | | <code>DOTAAbilityList.GetPositionWithinWindow()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ApplyStyles |
− | | <code> | + | | <code>DOTAAbilityList.ApplyStyles( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPropertyFromCode |
− | | <code> | + | | <code>DOTAAbilityList.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | DeleteAsync |
− | | <code> | + | | <code>DOTAAbilityList.DeleteAsync( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BIsTransparent |
− | | <code> | + | | <code>DOTAAbilityList.BIsTransparent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsInput |
− | | <code> | + | | <code>DOTAAbilityList.BAcceptsInput()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsFocus |
− | | <code> | + | | <code>DOTAAbilityList.BAcceptsFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetFocus |
− | | <code> | + | | <code>DOTAAbilityList.SetFocus()</code> |
| | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | UpdateFocusInContext |
− | | <code> | + | | <code>DOTAAbilityList.UpdateFocusInContext()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasHoverStyle |
− | | <code> | + | | <code>DOTAAbilityList.BHasHoverStyle()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAcceptsFocus |
− | | <code> | + | | <code>DOTAAbilityList.SetAcceptsFocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDisableFocusOnMouseDown |
− | | <code> | + | | <code>DOTAAbilityList.SetDisableFocusOnMouseDown( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasKeyFocus |
− | | <code> | + | | <code>DOTAAbilityList.BHasKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTAAbilityList.SetScrollParentToFitWhenFocused( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTAAbilityList.BScrollParentToFitWhenFocused()</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsSelected |
− | | <code> | + | | <code>DOTAAbilityList.IsSelected()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasDescendantKeyFocus |
− | | <code> | + | | <code>DOTAAbilityList.BHasDescendantKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayout |
− | | <code> | + | | <code>DOTAAbilityList.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutFromString |
− | | <code> | + | | <code>DOTAAbilityList.BLoadLayoutFromString( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutFromStringAsync |
− | | <code> | + | | <code>DOTAAbilityList.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutAsync |
− | | <code> | + | | <code>DOTAAbilityList.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutSnippet |
− | | <code> | + | | <code>DOTAAbilityList.BLoadLayoutSnippet( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCreateChildren |
− | | <code> | + | | <code>DOTAAbilityList.BCreateChildren( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetTopOfInputContext |
− | | <code> | + | | <code>DOTAAbilityList.SetTopOfInputContext( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariable |
− | | <code> | + | | <code>DOTAAbilityList.SetDialogVariable( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableInt |
− | | <code> | + | | <code>DOTAAbilityList.SetDialogVariableInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableTime |
− | | <code> | + | | <code>DOTAAbilityList.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToTop |
− | | <code> | + | | <code>DOTAAbilityList.ScrollToTop()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToBottom |
− | | <code> | + | | <code>DOTAAbilityList.ScrollToBottom()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToLeftEdge |
− | | <code> | + | | <code>DOTAAbilityList.ScrollToLeftEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToRightEdge |
− | | <code> | + | | <code>DOTAAbilityList.ScrollToRightEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollParentToMakePanelFit |
− | | <code> | + | | <code>DOTAAbilityList.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCanSeeInParentScroll |
− | | <code> | + | | <code>DOTAAbilityList.BCanSeeInParentScroll()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeInt |
− | | <code> | + | | <code>DOTAAbilityList.GetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeString |
− | | <code> | + | | <code>DOTAAbilityList.GetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeUInt32 |
− | | <code> | + | | <code>DOTAAbilityList.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeInt |
− | | <code> | + | | <code>DOTAAbilityList.SetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeString |
− | | <code> | + | | <code>DOTAAbilityList.SetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeUInt32 |
− | | <code> | + | | <code>DOTAAbilityList.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetInputNamespace |
− | | <code> | + | | <code>DOTAAbilityList.SetInputNamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RegisterForReadyEvents |
− | | <code> | + | | <code>DOTAAbilityList.RegisterForReadyEvents( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BReadyForDisplay |
− | | <code> | + | | <code>DOTAAbilityList.BReadyForDisplay()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetReadyForDisplay |
− | | <code> | + | | <code>DOTAAbilityList.SetReadyForDisplay( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetPanelEvent |
− | | <code> | + | | <code>DOTAAbilityList.SetPanelEvent( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RunScriptInPanelContext |
− | | <code> | + | | <code>DOTAAbilityList.RunScriptInPanelContext( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | rememberchildfocus |
− | | <code> | + | | <code>DOTAAbilityList.rememberchildfocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | paneltype |
− | | <code> | + | | <code>DOTAAbilityList.paneltype()</code> |
| | | | ||
+ | |} | ||
+ | |||
+ | |||
+ | === Label === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
|- | |- | ||
− | | | + | | visible |
− | | <code> | + | | <code>Label.visible( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code> | + | | <code>Label.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code> | + | | <code>Label.checked( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code> | + | | <code>Label.defaultfocus( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code> | + | | <code>Label.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code> | + | | <code>Label.hittest( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code> | + | | <code>Label.hittestchildren( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | tabindex |
− | | <code> | + | | <code>Label.tabindex( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code> | + | | <code>Label.selectionpos_x( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code> | + | | <code>Label.selectionpos_y( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | id |
− | | <code> | + | | <code>Label.id()</code> |
| | | | ||
|- | |- | ||
− | | | + | | layoutfile |
− | | <code> | + | | <code>Label.layoutfile()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentwidth |
− | | <code> | + | | <code>Label.contentwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentheight |
− | | <code> | + | | <code>Label.contentheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code> | + | | <code>Label.desiredlayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code> | + | | <code>Label.desiredlayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code> | + | | <code>Label.actuallayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code> | + | | <code>Label.actuallayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code> | + | | <code>Label.actualxoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code> | + | | <code>Label.actualyoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code> | + | | <code>Label.scrolloffset_y()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code> | + | | <code>Label.scrolloffset_x()</code> |
| | | | ||
|- | |- | ||
− | | | + | | style |
− | | <code> | + | | <code>Label.style()</code> |
| | | | ||
|- | |- | ||
− | | | + | | AddClass |
− | | <code> | + | | <code>Label.AddClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code> | + | | <code>Label.RemoveClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasClass |
− | | <code> | + | | <code>Label.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code> | + | | <code>Label.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code> | + | | <code>Label.ToggleClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code> | + | | <code>Label.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code> | + | | <code>Label.ClearPanelEvent( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code> | + | | <code>Label.SetDraggable( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code> | + | | <code>Label.IsDraggable()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code> | + | | <code>Label.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code> | + | | <code>Label.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code> | + | | <code>Label.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code> | + | | <code>Label.Children()</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildrenWithClassTraverse |
− | | <code> | + | | <code>Label.FindChildrenWithClassTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetParent |
− | | <code> | + | | <code>Label.GetParent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetParent |
− | | <code> | + | | <code>Label.SetParent( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChild |
− | | <code> | + | | <code>Label.FindChild( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildTraverse |
− | | <code> | + | | <code>Label.FindChildTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildInLayoutFile |
− | | <code> | + | | <code>Label.FindChildInLayoutFile( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveAndDeleteChildren |
− | | <code> | + | | <code>Label.RemoveAndDeleteChildren()</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildBefore |
− | | <code> | + | | <code>Label.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildAfter |
− | | <code> | + | | <code>Label.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetPositionWithinWindow |
− | | <code> | + | | <code>Label.GetPositionWithinWindow()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ApplyStyles |
− | | <code> | + | | <code>Label.ApplyStyles( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPropertyFromCode |
− | | <code> | + | | <code>Label.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | DeleteAsync |
− | | <code> | + | | <code>Label.DeleteAsync( float float_1 )</code> |
| | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | BIsTransparent |
− | | <code>Label. | + | | <code>Label.BIsTransparent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsInput |
− | | <code>Label. | + | | <code>Label.BAcceptsInput()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsFocus |
− | | <code>Label. | + | | <code>Label.BAcceptsFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetFocus |
− | | <code>Label. | + | | <code>Label.SetFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | UpdateFocusInContext |
− | | <code>Label. | + | | <code>Label.UpdateFocusInContext()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasHoverStyle |
− | | <code>Label. | + | | <code>Label.BHasHoverStyle()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAcceptsFocus |
− | | <code>Label. | + | | <code>Label.SetAcceptsFocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDisableFocusOnMouseDown |
− | | <code>Label. | + | | <code>Label.SetDisableFocusOnMouseDown( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasKeyFocus |
− | | <code>Label. | + | | <code>Label.BHasKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetScrollParentToFitWhenFocused |
− | | <code>Label. | + | | <code>Label.SetScrollParentToFitWhenFocused( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BScrollParentToFitWhenFocused |
− | | <code>Label. | + | | <code>Label.BScrollParentToFitWhenFocused()</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsSelected |
− | | <code>Label. | + | | <code>Label.IsSelected()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasDescendantKeyFocus |
− | | <code>Label. | + | | <code>Label.BHasDescendantKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayout |
− | | <code>Label. | + | | <code>Label.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutFromString |
− | | <code>Label. | + | | <code>Label.BLoadLayoutFromString( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutFromStringAsync |
− | | <code>Label. | + | | <code>Label.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutAsync |
− | | <code>Label. | + | | <code>Label.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutSnippet |
− | | <code>Label. | + | | <code>Label.BLoadLayoutSnippet( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCreateChildren |
− | | <code>Label. | + | | <code>Label.BCreateChildren( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetTopOfInputContext |
− | | <code>Label. | + | | <code>Label.SetTopOfInputContext( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariable |
− | | <code>Label. | + | | <code>Label.SetDialogVariable( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableInt |
− | | <code>Label. | + | | <code>Label.SetDialogVariableInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableTime |
− | | <code>Label. | + | | <code>Label.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToTop |
− | | <code>Label. | + | | <code>Label.ScrollToTop()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToBottom |
− | | <code>Label. | + | | <code>Label.ScrollToBottom()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToLeftEdge |
− | | <code>Label. | + | | <code>Label.ScrollToLeftEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToRightEdge |
− | | <code>Label. | + | | <code>Label.ScrollToRightEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollParentToMakePanelFit |
− | | <code>Label. | + | | <code>Label.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCanSeeInParentScroll |
− | | <code>Label. | + | | <code>Label.BCanSeeInParentScroll()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeInt |
− | | <code>Label. | + | | <code>Label.GetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeString |
− | | <code>Label. | + | | <code>Label.GetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeUInt32 |
− | | <code>Label. | + | | <code>Label.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeInt |
− | | <code>Label. | + | | <code>Label.SetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeString |
− | | <code>Label. | + | | <code>Label.SetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeUInt32 |
− | | <code>Label. | + | | <code>Label.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetInputNamespace |
− | | <code>Label. | + | | <code>Label.SetInputNamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RegisterForReadyEvents |
− | | <code>Label. | + | | <code>Label.RegisterForReadyEvents( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BReadyForDisplay |
− | | <code>Label. | + | | <code>Label.BReadyForDisplay()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetReadyForDisplay |
− | | <code>Label. | + | | <code>Label.SetReadyForDisplay( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | text |
− | | <code>Label. | + | | <code>Label.text( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | html |
− | | <code>Label. | + | | <code>Label.html( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetPanelEvent |
− | | <code>Label. | + | | <code>Label.SetPanelEvent( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RunScriptInPanelContext |
− | | <code>Label. | + | | <code>Label.RunScriptInPanelContext( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | rememberchildfocus |
− | | <code>Label. | + | | <code>Label.rememberchildfocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | paneltype |
− | | <code>Label. | + | | <code>Label.paneltype()</code> |
| | | | ||
+ | |} | ||
+ | |||
+ | |||
+ | === DOTAHUDShop === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
|- | |- | ||
− | | | + | | visible |
− | | <code> | + | | <code>DOTAHUDShop.visible( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code> | + | | <code>DOTAHUDShop.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code> | + | | <code>DOTAHUDShop.checked( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code> | + | | <code>DOTAHUDShop.defaultfocus( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code> | + | | <code>DOTAHUDShop.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code> | + | | <code>DOTAHUDShop.hittest( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code> | + | | <code>DOTAHUDShop.hittestchildren( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | tabindex |
− | | <code> | + | | <code>DOTAHUDShop.tabindex( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code> | + | | <code>DOTAHUDShop.selectionpos_x( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code> | + | | <code>DOTAHUDShop.selectionpos_y( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | id |
− | | <code> | + | | <code>DOTAHUDShop.id()</code> |
| | | | ||
|- | |- | ||
− | | | + | | layoutfile |
− | | <code> | + | | <code>DOTAHUDShop.layoutfile()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentwidth |
− | | <code> | + | | <code>DOTAHUDShop.contentwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentheight |
− | | <code> | + | | <code>DOTAHUDShop.contentheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code> | + | | <code>DOTAHUDShop.desiredlayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code> | + | | <code>DOTAHUDShop.desiredlayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code> | + | | <code>DOTAHUDShop.actuallayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code> | + | | <code>DOTAHUDShop.actuallayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code> | + | | <code>DOTAHUDShop.actualxoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code> | + | | <code>DOTAHUDShop.actualyoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code> | + | | <code>DOTAHUDShop.scrolloffset_y()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code> | + | | <code>DOTAHUDShop.scrolloffset_x()</code> |
| | | | ||
|- | |- | ||
− | | | + | | style |
− | | <code> | + | | <code>DOTAHUDShop.style()</code> |
| | | | ||
|- | |- | ||
− | | | + | | AddClass |
− | | <code> | + | | <code>DOTAHUDShop.AddClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code> | + | | <code>DOTAHUDShop.RemoveClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasClass |
− | | <code> | + | | <code>DOTAHUDShop.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code> | + | | <code>DOTAHUDShop.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code> | + | | <code>DOTAHUDShop.ToggleClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code> | + | | <code>DOTAHUDShop.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code> | + | | <code>DOTAHUDShop.ClearPanelEvent( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code> | + | | <code>DOTAHUDShop.SetDraggable( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code> | + | | <code>DOTAHUDShop.IsDraggable()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code> | + | | <code>DOTAHUDShop.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code> | + | | <code>DOTAHUDShop.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code> | + | | <code>DOTAHUDShop.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code> | + | | <code>DOTAHUDShop.Children()</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildrenWithClassTraverse |
− | | <code> | + | | <code>DOTAHUDShop.FindChildrenWithClassTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetParent |
− | | <code> | + | | <code>DOTAHUDShop.GetParent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetParent |
− | | <code> | + | | <code>DOTAHUDShop.SetParent( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChild |
− | | <code> | + | | <code>DOTAHUDShop.FindChild( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildTraverse |
− | | <code> | + | | <code>DOTAHUDShop.FindChildTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildInLayoutFile |
− | | <code> | + | | <code>DOTAHUDShop.FindChildInLayoutFile( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveAndDeleteChildren |
− | | <code> | + | | <code>DOTAHUDShop.RemoveAndDeleteChildren()</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildBefore |
− | | <code> | + | | <code>DOTAHUDShop.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildAfter |
− | | <code> | + | | <code>DOTAHUDShop.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | GetPositionWithinWindow |
− | | <code> | + | | <code>DOTAHUDShop.GetPositionWithinWindow()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ApplyStyles |
− | | <code> | + | | <code>DOTAHUDShop.ApplyStyles( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPropertyFromCode |
− | | <code> | + | | <code>DOTAHUDShop.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | DeleteAsync |
− | | <code> | + | | <code>DOTAHUDShop.DeleteAsync( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BIsTransparent |
− | | <code> | + | | <code>DOTAHUDShop.BIsTransparent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsInput |
− | | <code> | + | | <code>DOTAHUDShop.BAcceptsInput()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsFocus |
− | | <code> | + | | <code>DOTAHUDShop.BAcceptsFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetFocus |
− | | <code> | + | | <code>DOTAHUDShop.SetFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | UpdateFocusInContext |
− | | <code> | + | | <code>DOTAHUDShop.UpdateFocusInContext()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasHoverStyle |
− | | <code> | + | | <code>DOTAHUDShop.BHasHoverStyle()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAcceptsFocus |
− | | <code> | + | | <code>DOTAHUDShop.SetAcceptsFocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDisableFocusOnMouseDown |
− | | <code> | + | | <code>DOTAHUDShop.SetDisableFocusOnMouseDown( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasKeyFocus |
− | | <code> | + | | <code>DOTAHUDShop.BHasKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTAHUDShop.SetScrollParentToFitWhenFocused( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTAHUDShop.BScrollParentToFitWhenFocused()</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsSelected |
− | | <code> | + | | <code>DOTAHUDShop.IsSelected()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasDescendantKeyFocus |
− | | <code> | + | | <code>DOTAHUDShop.BHasDescendantKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayout |
− | | <code> | + | | <code>DOTAHUDShop.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutFromString |
− | | <code> | + | | <code>DOTAHUDShop.BLoadLayoutFromString( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutFromStringAsync |
− | | <code> | + | | <code>DOTAHUDShop.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutAsync |
− | | <code> | + | | <code>DOTAHUDShop.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutSnippet |
− | | <code> | + | | <code>DOTAHUDShop.BLoadLayoutSnippet( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCreateChildren |
− | | <code> | + | | <code>DOTAHUDShop.BCreateChildren( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetTopOfInputContext |
− | | <code> | + | | <code>DOTAHUDShop.SetTopOfInputContext( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariable |
− | | <code> | + | | <code>DOTAHUDShop.SetDialogVariable( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableInt |
− | | <code> | + | | <code>DOTAHUDShop.SetDialogVariableInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableTime |
− | | <code> | + | | <code>DOTAHUDShop.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToTop |
− | | <code> | + | | <code>DOTAHUDShop.ScrollToTop()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToBottom |
− | | <code> | + | | <code>DOTAHUDShop.ScrollToBottom()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToLeftEdge |
− | | <code> | + | | <code>DOTAHUDShop.ScrollToLeftEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToRightEdge |
− | | <code> | + | | <code>DOTAHUDShop.ScrollToRightEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollParentToMakePanelFit |
− | | <code> | + | | <code>DOTAHUDShop.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCanSeeInParentScroll |
− | | <code> | + | | <code>DOTAHUDShop.BCanSeeInParentScroll()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeInt |
− | | <code> | + | | <code>DOTAHUDShop.GetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeString |
− | | <code> | + | | <code>DOTAHUDShop.GetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeUInt32 |
− | | <code> | + | | <code>DOTAHUDShop.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeInt |
− | | <code> | + | | <code>DOTAHUDShop.SetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeString |
− | | <code> | + | | <code>DOTAHUDShop.SetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeUInt32 |
− | | <code> | + | | <code>DOTAHUDShop.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetInputNamespace |
− | | <code> | + | | <code>DOTAHUDShop.SetInputNamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RegisterForReadyEvents |
− | | <code> | + | | <code>DOTAHUDShop.RegisterForReadyEvents( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BReadyForDisplay |
− | | <code> | + | | <code>DOTAHUDShop.BReadyForDisplay()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetReadyForDisplay |
− | | <code> | + | | <code>DOTAHUDShop.SetReadyForDisplay( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetPanelEvent |
− | | <code> | + | | <code>DOTAHUDShop.SetPanelEvent( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RunScriptInPanelContext |
− | | <code> | + | | <code>DOTAHUDShop.RunScriptInPanelContext( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | rememberchildfocus |
− | | <code> | + | | <code>DOTAHUDShop.rememberchildfocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | paneltype |
− | | <code> | + | | <code>DOTAHUDShop.paneltype()</code> |
| | | | ||
+ | |} | ||
+ | |||
+ | |||
+ | === DOTAAvatarImage === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
|- | |- | ||
− | | | + | | visible |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.visible( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.checked( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.defaultfocus( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.hittest( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.hittestchildren( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | tabindex |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.tabindex( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.selectionpos_x( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.selectionpos_y( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | id |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.id()</code> |
| | | | ||
|- | |- | ||
− | | | + | | layoutfile |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.layoutfile()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentwidth |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.contentwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentheight |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.contentheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.desiredlayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.desiredlayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.actuallayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.actuallayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.actualxoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.actualyoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.scrolloffset_y()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.scrolloffset_x()</code> |
| | | | ||
|- | |- | ||
− | | | + | | style |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.style()</code> |
| | | | ||
|- | |- | ||
− | | | + | | AddClass |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.AddClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.RemoveClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasClass |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.ToggleClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.ClearPanelEvent( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.SetDraggable( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.IsDraggable()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.Children()</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildrenWithClassTraverse |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.FindChildrenWithClassTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetParent |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.GetParent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetParent |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.SetParent( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChild |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.FindChild( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildTraverse |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.FindChildTraverse( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildInLayoutFile |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.FindChildInLayoutFile( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveAndDeleteChildren |
− | | <code>DOTAAvatarImage. | + | | <code>DOTAAvatarImage.RemoveAndDeleteChildren()</code> |
| | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | MoveChildBefore |
− | | <code> | + | | <code>DOTAAvatarImage.MoveChildBefore( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | MoveChildAfter |
− | | <code> | + | | <code>DOTAAvatarImage.MoveChildAfter( unknown_variant_type unknown_variant_type_1, unknown_variant_type unknown_variant_type_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetPositionWithinWindow |
− | | <code> | + | | <code>DOTAAvatarImage.GetPositionWithinWindow()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ApplyStyles |
− | | <code> | + | | <code>DOTAAvatarImage.ApplyStyles( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPropertyFromCode |
− | | <code> | + | | <code>DOTAAvatarImage.ClearPropertyFromCode( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | DeleteAsync |
− | | <code> | + | | <code>DOTAAvatarImage.DeleteAsync( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BIsTransparent |
− | | <code> | + | | <code>DOTAAvatarImage.BIsTransparent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsInput |
− | | <code> | + | | <code>DOTAAvatarImage.BAcceptsInput()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BAcceptsFocus |
− | | <code> | + | | <code>DOTAAvatarImage.BAcceptsFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetFocus |
− | | <code> | + | | <code>DOTAAvatarImage.SetFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | UpdateFocusInContext |
− | | <code> | + | | <code>DOTAAvatarImage.UpdateFocusInContext()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasHoverStyle |
− | | <code> | + | | <code>DOTAAvatarImage.BHasHoverStyle()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAcceptsFocus |
− | | <code> | + | | <code>DOTAAvatarImage.SetAcceptsFocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDisableFocusOnMouseDown |
− | | <code> | + | | <code>DOTAAvatarImage.SetDisableFocusOnMouseDown( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasKeyFocus |
− | | <code> | + | | <code>DOTAAvatarImage.BHasKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTAAvatarImage.SetScrollParentToFitWhenFocused( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BScrollParentToFitWhenFocused |
− | | <code> | + | | <code>DOTAAvatarImage.BScrollParentToFitWhenFocused()</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsSelected |
− | | <code> | + | | <code>DOTAAvatarImage.IsSelected()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasDescendantKeyFocus |
− | | <code> | + | | <code>DOTAAvatarImage.BHasDescendantKeyFocus()</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayout |
− | | <code> | + | | <code>DOTAAvatarImage.BLoadLayout( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutFromString |
− | | <code> | + | | <code>DOTAAvatarImage.BLoadLayoutFromString( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutFromStringAsync |
− | | <code> | + | | <code>DOTAAvatarImage.LoadLayoutFromStringAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | LoadLayoutAsync |
− | | <code> | + | | <code>DOTAAvatarImage.LoadLayoutAsync( cstring cstring_1, boolean boolean_2, boolean boolean_3 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BLoadLayoutSnippet |
− | | <code> | + | | <code>DOTAAvatarImage.BLoadLayoutSnippet( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCreateChildren |
− | | <code> | + | | <code>DOTAAvatarImage.BCreateChildren( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetTopOfInputContext |
− | | <code> | + | | <code>DOTAAvatarImage.SetTopOfInputContext( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariable |
− | | <code> | + | | <code>DOTAAvatarImage.SetDialogVariable( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableInt |
− | | <code> | + | | <code>DOTAAvatarImage.SetDialogVariableInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDialogVariableTime |
− | | <code> | + | | <code>DOTAAvatarImage.SetDialogVariableTime( cstring cstring_1, int64 int64_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToTop |
− | | <code> | + | | <code>DOTAAvatarImage.ScrollToTop()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToBottom |
− | | <code> | + | | <code>DOTAAvatarImage.ScrollToBottom()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToLeftEdge |
− | | <code> | + | | <code>DOTAAvatarImage.ScrollToLeftEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollToRightEdge |
− | | <code> | + | | <code>DOTAAvatarImage.ScrollToRightEdge()</code> |
| | | | ||
|- | |- | ||
− | | | + | | ScrollParentToMakePanelFit |
− | | <code> | + | | <code>DOTAAvatarImage.ScrollParentToMakePanelFit( unknown_variant_type unknown_variant_type_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BCanSeeInParentScroll |
− | | <code> | + | | <code>DOTAAvatarImage.BCanSeeInParentScroll()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeInt |
− | | <code> | + | | <code>DOTAAvatarImage.GetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeString |
− | | <code> | + | | <code>DOTAAvatarImage.GetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetAttributeUInt32 |
− | | <code> | + | | <code>DOTAAvatarImage.GetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeInt |
− | | <code> | + | | <code>DOTAAvatarImage.SetAttributeInt( cstring cstring_1, integer integer_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeString |
− | | <code> | + | | <code>DOTAAvatarImage.SetAttributeString( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetAttributeUInt32 |
− | | <code> | + | | <code>DOTAAvatarImage.SetAttributeUInt32( cstring cstring_1, unsigned unsigned_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetInputNamespace |
− | | <code> | + | | <code>DOTAAvatarImage.SetInputNamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RegisterForReadyEvents |
− | | <code> | + | | <code>DOTAAvatarImage.RegisterForReadyEvents( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BReadyForDisplay |
− | | <code> | + | | <code>DOTAAvatarImage.BReadyForDisplay()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetReadyForDisplay |
− | | <code> | + | | <code>DOTAAvatarImage.SetReadyForDisplay( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | steamid |
− | | <code> | + | | <code>DOTAAvatarImage.steamid( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | accountid |
− | | <code> | + | | <code>DOTAAvatarImage.accountid( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetPanelEvent |
− | | <code> | + | | <code>DOTAAvatarImage.SetPanelEvent( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RunScriptInPanelContext |
− | | <code> | + | | <code>DOTAAvatarImage.RunScriptInPanelContext( js_raw_args js_raw_args_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | rememberchildfocus |
− | | <code> | + | | <code>DOTAAvatarImage.rememberchildfocus( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | paneltype |
− | | <code> | + | | <code>DOTAAvatarImage.paneltype()</code> |
| | | | ||
+ | |} | ||
+ | |||
+ | |||
+ | === CustomUIElement === | ||
+ | {| class="standard-table" style="width: 100%;" | ||
+ | ! Function | ||
+ | ! Signature | ||
+ | ! Description | ||
|- | |- | ||
− | | | + | | visible |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.visible( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | enabled |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.enabled( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | checked |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.checked( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | defaultfocus |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.defaultfocus( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | inputnamespace |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.inputnamespace( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittest |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.hittest( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | hittestchildren |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.hittestchildren( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | tabindex |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.tabindex( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_x |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.selectionpos_x( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | selectionpos_y |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.selectionpos_y( float float_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | id |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.id()</code> |
| | | | ||
|- | |- | ||
− | | | + | | layoutfile |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.layoutfile()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentwidth |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.contentwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | contentheight |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.contentheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutwidth |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.desiredlayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | desiredlayoutheight |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.desiredlayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutwidth |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.actuallayoutwidth()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actuallayoutheight |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.actuallayoutheight()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualxoffset |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.actualxoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | actualyoffset |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.actualyoffset()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_y |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.scrolloffset_y()</code> |
| | | | ||
|- | |- | ||
− | | | + | | scrolloffset_x |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.scrolloffset_x()</code> |
| | | | ||
|- | |- | ||
− | | | + | | style |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.style()</code> |
| | | | ||
|- | |- | ||
− | | | + | | AddClass |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.AddClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | RemoveClass |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.RemoveClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | BHasClass |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.BHasClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetHasClass |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.SetHasClass( cstring cstring_1, boolean boolean_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ToggleClass |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.ToggleClass( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SwitchClass |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.SwitchClass( cstring cstring_1, cstring cstring_2 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | ClearPanelEvent |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.ClearPanelEvent( cstring cstring_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetDraggable |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.SetDraggable( boolean boolean_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | IsDraggable |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.IsDraggable()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildCount |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.GetChildCount()</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChild |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.GetChild( integer integer_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | GetChildIndex |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.GetChildIndex( unknown_variant_type unknown_variant_type_1 )</code> |
| | | | ||
|- | |- | ||
− | | | + | | Children |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.Children()</code> |
| | | | ||
|- | |- | ||
− | | | + | | FindChildrenWithClassTraverse |
− | | <code>CustomUIElement. | + | | <code>CustomUIElement.FindChildrenWithClassTraverse( cstring cstring_1 )</code> |
| | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
− | | | + | | GetParent |
− | | <code> | + | | <code>CustomUIElement.GetParent()</code> |
| | | | ||
|- | |- | ||
− | | | + | | SetParent |
− | | <code> |