Difference between revisions of "ISInterface:RemoveElement"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 16: Line 16:
 
== See Also ==
 
== See Also ==
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]
 
+
*[[ISInterface:AddElement|AddElement]]
 
[[Category:ISXDK]]
 
[[Category:ISXDK]]
 
[[Category:ISInterface]]
 
[[Category:ISInterface]]

Latest revision as of 23:57, 2 September 2005

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");

See Also