Difference between revisions of "ISInterface:RemoveElement"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
===Syntax=== | ===Syntax=== | ||
− | + | *bool RemoveElement(char *Name) | |
== Purpose == | == Purpose == | ||
− | + | To remove a HUD element | |
== Usage == | == Usage == | ||
=== Parameters === | === Parameters === | ||
− | + | *char *Name | |
+ | :Name of the element to remove | ||
=== Return Value === | === Return Value === | ||
− | + | *bool | |
+ | :Returns true on success, false on failure | ||
== Examples == | == Examples == | ||
− | + | ===Remove a HUD element=== | |
+ | *pISInterface->RemoveElement("fps"); | ||
== See Also == | == See Also == |
Revision as of 23:56, 2 September 2005
Contents
Syntax
- bool RemoveElement(char *Name)
Purpose
To remove a HUD element
Usage
Parameters
- char *Name
- Name of the element to remove
Return Value
- bool
- Returns true on success, false on failure
Examples
Remove a HUD element
- pISInterface->RemoveElement("fps");