Difference between revisions of "ISInterface:AddLSType"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 +
==Syntax==
 +
*bool AddLSType(class LSType &Type)
 
== Purpose ==
 
== Purpose ==
 
+
To add a data type for use in LavishScript
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 +
*class LSType &Type
 +
:The type to add
 
=== Return Value ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
 
== See Also ==
 
== See Also ==
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]
 
+
* [[ISInterface:RemoveLSType|RemoveLSType]]
 +
* [[ISInterface:FindLSType|FindLSType]]
 
[[Category:ISXDK]]
 
[[Category:ISXDK]]
 
[[Category:ISInterface]]
 
[[Category:ISInterface]]

Revision as of 01:28, 2 September 2005

Syntax

  • bool AddLSType(class LSType &Type)

Purpose

To add a data type for use in LavishScript

Usage

Parameters

  • class LSType &Type
The type to add

Return Value

  • bool
Returns true on success, false on failure

Examples

See Also