Difference between revisions of "ISInterface:RemoveElement"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
(One intermediate revision by the same user not shown)
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 ==
 
* [[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