LocalDef Method
Description
Returns local definition status.
Syntax
Function LocalDef (LocalNumber As Integer) As Boolean
Parameters
- LocalNumber
An integer (1 to 15) indicating the number of the local coordinate system for which to return the status.
Return Value
True if the specified local is defined, False if not.
See Also
Local Method, LocalClr Method
LocalDef Example
VB Example:
Dim localExists As Boolean
localExists = m_spel.LocalDef(1)
C# Example:
bool localExists;
localExists = m_spel.LocalDef(1);