PhidgetManagerMBS shared methods

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

Back to PhidgetManagerMBS class.

PhidgetManagerMBS.LoadLibrary(file as FolderItem) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Phidgets MBS Phidgets Plugin 22.1 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Loads the Phidgets library from given location.

Returns true on success or false on failure.
See LibraryLoadError property for error message.

See also:

PhidgetManagerMBS.LoadLibrary(path as String) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Phidgets MBS Phidgets Plugin 22.1 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Loads the Phidgets library from given file path.
Example

// where is the library?

#If TargetWindows
Const path = "Phidget22.dll"
#Else TargetMacOS Then
Const path = "/Library/Frameworks/Phidget22.framework"
#EndIf

If PhidgetManagerMBS.LoadLibrary(path) Then

MessageBox "OK"

Else

MessageBox PhidgetManagerMBS.LibraryLoadError
Return

End If

Returns true on success or false on failure.
See LibraryLoadError property for error message.

See also:

The items on this page are in the following plugins: MBS Phidgets Plugin.


💬 Ask a question or report a problem