LibGetInfo

Acquire the library information included in SPEL+ project.
LibGetInfo libraryName, ByRef libraryID, ByRef version, ByRef comment, ByRef libraryPass

Syntax
LibGetInfo libraryName, ByRef version, ByRef comment

Parameters

  • libraryName: Specifies the library name as a string (up to 32 characters).
  • libraryID: Specifies the string variable that gets the library ID. The library ID is a value that is changed every time a library is created.
  • version: Specifies the string variable that gets the version of the corresponding library.
  • comment: Specifies the string variable that gets the comment of the corresponding library.
  • libraryPass: Specifies the string variable that gets the path where the library is saved. Displayed as "[Data folder]\Libraries[Library name]".

See Also
GetProjectInfo

LibGetInfo Example

String strID$
String strVer$
String strDescript$
String strPath$
LibGetInfo "test", ByRef strID$, ByRef strVer$, ByRef strDescript$, ByRef strPath$
Print "ID = " + strID$
Print "Version = " + strVer$
Print "Description = " + strDescript$
Print "Path = " + strPath$