Platforms to show: All Mac Windows Linux Cross-Platform

Back to MBS module.

MBS.BuildNumber = 21067

Type Topic Plugin Version
const Registration MBS Main Plugin 9.5
The build number of the plugins.
Example
#if mbs.BuildNumber>15000 then

// use some new MBS feature

MsgBox "OK"

#endif

The constant value is not in this documentation as it changes too often.

MBS.CompileDate = "Mar 10 2024"

Type Topic Plugin Version
const Registration MBS Main Plugin 9.5
The compilation date of the plugin.

The constant value is not in this documentation as it changes too often.

MBS.CompileTime = "09:32:50"

Type Topic Plugin Version
const Registration MBS Main Plugin 9.5
The compilation time of the plugin.
Example
MsgBox mbs.CompileTime

The constant value is not in this documentation as it changes too often.

MBS.ComputerName = "MyMacM3"

Type Topic Plugin Version
const Registration MBS Main Plugin 14.0
The computer the IDE was launched on for building an app.
Example
MsgBox mbs.ComputerName

Using this constant allows you to include details on who build the app in the application itself, e.g. for documentation.
The constant value is not in this documentation as it changes too often.

MBS.Copyright = "© 2024 by Monkeybread Software"

Type Topic Plugin Version
const Registration MBS Main Plugin 9.5
The plugin copyright string.
Example
MsgBox mbs.Copyright

MBS.Day = 10

Type Topic Plugin Version
const Registration MBS Main Plugin 23.0
The day of the plugin.
Example

MsgBox "Day: " + str(mbs.Day)

The day the plugin was compiled.
Can be used in #if conditions.

MBS.HasAudioPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Audio plugin is installed.
Example
#if MBS.HasAudioPlugin then
MsgBox "Audio Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasAVFoundationPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the AVFoundation plugin is installed.
Example
#if MBS.HasAVFoundationPlugin then
MsgBox "AVFoundation Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasBarcodePlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Barcode plugin is installed.
Example
#if MBS.HasBarcodePlugin then
MsgBox "Barcode Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasCanonEOSDigitalPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the CanonEOSDigital plugin is installed.
Example
#if MBS.HasCanonEOSDigitalPlugin then
MsgBox "CanonEOSDigital Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasChartDirectorPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the ChartDirector plugin is installed.
Example
#if MBS.HasChartDirectorPlugin then
MsgBox "ChartDirector Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasCocoaBasePlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the CocoaBase plugin is installed.
Example
#if MBS.HasCocoaBasePlugin then
MsgBox "CocoaBase Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasCocoaControlsPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the CocoaControls plugin is installed.
Example
#if MBS.HasCocoaControlsPlugin then
MsgBox "CocoaControls Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasCocoaExtrasPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the CocoaExtras plugin is installed.
Example
#if MBS.HasCocoaExtrasPlugin then
MsgBox "CocoaExtras Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasCocoaPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Cocoa plugin is installed.
Example
#if MBS.HasCocoaPlugin then
MsgBox "Cocoa Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasCompressionPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Compression plugin is installed.
Example
#if MBS.HasCompressionPlugin then
MsgBox "Compression Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasComputerControlPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the ComputerControl plugin is installed.
Example
#if MBS.HasComputerControlPlugin then
MsgBox "ComputerControl Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasControlsPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Controls plugin is installed.
Example
#if MBS.HasControlsPlugin then
MsgBox "Controls Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasCUPSPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the CUPS plugin is installed.
Example
#if MBS.HasCUPSPlugin then
MsgBox "CUPS Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasCURLPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the CURL plugin is installed.
Example
#if MBS.HasCURLPlugin then
MsgBox "CURL Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasDataTypesPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the DataTypes plugin is installed.
Example
#if MBS.HasDataTypesPlugin then
MsgBox "DataTypes Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasDirectShowPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the DirectShow plugin is installed.
Example
#if MBS.HasDirectShowPlugin then
MsgBox "DirectShow Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasDonglePlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Dongle plugin is installed.
Example
#if MBS.HasDonglePlugin then
MsgBox "Dongle Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasDynaPDFPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the DynaPDF plugin is installed.
Example
#if MBS.HasDynaPDFPlugin then
MsgBox "DynaPDF Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasEncryptionPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Encryption plugin is installed.
Example
#if MBS.HasEncryptionPlugin then
MsgBox "Encryption Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasGIFPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the GIF plugin is installed.
Example
#if MBS.HasGIFPlugin then
MsgBox "GIF Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasGraphicsMagickPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the GraphicsMagick plugin is installed.
Example
#if MBS.HasGraphicsMagickPlugin then
MsgBox "GraphicsMagick Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasImageMagickPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the ImageMagick plugin is installed.
Example
#if MBS.HasImageMagickPlugin then
MsgBox "ImageMagick Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasJavaPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Java plugin is installed.
Example
#if MBS.HasJavaPlugin then
MsgBox "Java Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasJPEGPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the JPEG plugin is installed.
Example
#if MBS.HasJPEGPlugin then
MsgBox "JPEG Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasLargePicturePlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the LargePicture plugin is installed.
Example
#if MBS.HasLargePicturePlugin then
MsgBox "LargePicture Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasLCMS2Plugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the LCMS2 plugin is installed.
Example
#if MBS.HasLCMS2Plugin then
MsgBox "LCMS2 Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasLCMSPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the LCMS plugin is installed.
Example
#if MBS.HasLCMSPlugin then
MsgBox "LCMS Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasLeopardPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Leopard plugin is installed.
Example
#if MBS.HasLeopardPlugin then
MsgBox "Leopard Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasLinuxPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Linux plugin is installed.
Example
#if MBS.HasLinuxPlugin then
MsgBox "Linux Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasLionPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Lion plugin is installed.
Example
#if MBS.HasLionPlugin then
MsgBox "Lion Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMac64bitPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Mac64bit plugin is installed.
Example
#if MBS.HasMac64bitPlugin then
MsgBox "Mac64bit Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMacOSXCFPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the MacOSXCF plugin is installed.
Example
#if MBS.HasMacOSXCFPlugin then
MsgBox "MacOSXCF Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMacOSXCGPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the MacOSXCG plugin is installed.
Example
#if MBS.HasMacOSXCGPlugin then
MsgBox "MacOSXCG Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMacOSXPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the MacOSX plugin is installed.
Example
#if MBS.HasMacOSXPlugin then
MsgBox "MacOSX Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMacPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Mac plugin is installed.
Example
#if MBS.HasMacPlugin then
MsgBox "Mac Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMainPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Main plugin is installed.
Example
#if MBS.HasMainPlugin then
MsgBox "Main Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMarkDownPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the MarkDown plugin is installed.
Example
#if MBS.HasMarkDownPlugin then
MsgBox "MarkDown Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMavericksPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Mavericks plugin is installed.
Example
#if MBS.HasMavericksPlugin then
MsgBox "Mavericks Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasMountainLionPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the MountainLion plugin is installed.
Example
#if MBS.HasMountainLionPlugin then
MsgBox "MountainLion Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasNetworkPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Network plugin is installed.
Example
#if MBS.HasNetworkPlugin then
MsgBox "Network Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasNikonCameraPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the NikonCamera plugin is installed.
Example
#if MBS.HasNikonCameraPlugin then
MsgBox "NikonCamera Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasOCRPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the OCR plugin is installed.
Example
#if MBS.HasOCRPlugin then
MsgBox "OCR Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasOverlayPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Overlay plugin is installed.
Example
#if MBS.HasOverlayPlugin then
MsgBox "Overlay Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasPHPPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the PHP plugin is installed.
Example
#if MBS.HasPHPPlugin then
MsgBox "PHP Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasPicturePlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Picture plugin is installed.
Example
#if MBS.HasPicturePlugin then
MsgBox "Picture Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasPNGPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the PNG plugin is installed.
Example
#if MBS.HasPNGPlugin then
MsgBox "PNG Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasQTKitPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the QTKit plugin is installed.
Example
#if MBS.HasQTKitPlugin then
MsgBox "QTKit Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasQuickTimePlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the QuickTime plugin is installed.
Example
#if MBS.HasQuickTimePlugin then
MsgBox "QuickTime Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasRegExPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the RegEx plugin is installed.
Example
#if MBS.HasRegExPlugin then
MsgBox "RegEx Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasSmartCardPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the SmartCard plugin is installed.
Example
#if MBS.HasSmartCardPlugin then
MsgBox "SmartCard Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasSnowLeopardPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the SnowLeopard plugin is installed.
Example
#if MBS.HasSnowLeopardPlugin then
MsgBox "SnowLeopard Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasSQLPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the SQL plugin is installed.
Example
#if MBS.HasSQLPlugin then
MsgBox "SQL Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasTAPIPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the TAPI plugin is installed.
Example
#if MBS.HasTAPIPlugin then
MsgBox "TAPI Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasTidyPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Tidy plugin is installed.
Example
#if MBS.HasTidyPlugin then
MsgBox "Tidy Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasTiffPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Tiff plugin is installed.
Example
#if MBS.HasTiffPlugin then
MsgBox "Tiff Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasTwainPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Twain plugin is installed.
Example
#if MBS.HasTwainPlugin then
MsgBox "Twain Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasUSBPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the USB plugin is installed.
Example
#if MBS.HasUSBPlugin then
MsgBox "USB Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasUtilPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Util plugin is installed.
Example
#if MBS.HasUtilPlugin then
MsgBox "Util Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasVLCPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the VLC plugin is installed.
Example
#if MBS.HasVLCPlugin then
MsgBox "VLC Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasWIAPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the WIA plugin is installed.
Example
#if MBS.HasWIAPlugin then
MsgBox "WIA Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasWinDragDropPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the WinDragDrop plugin is installed.
Example
#if MBS.HasWinDragDropPlugin then
MsgBox "WinDragDrop Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasWinICMPlugin = false

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the WinICM plugin is installed.
Example
#if MBS.HasWinICMPlugin then
MsgBox "WinICM Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasWinPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the Win plugin is installed.
Example
#if MBS.HasWinPlugin then
MsgBox "Win Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasXLPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the XL plugin is installed.
Example
#if MBS.HasXLPlugin then
MsgBox "XL Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HasXMPPlugin = true

Type Topic Plugin Version
const Registration MBS Main Plugin 16.4
Whether the XMP plugin is installed.
Example
#if MBS.HasXMPPlugin then
MsgBox "XMP Plugin is installed."
#endif

True if the Main Plugin saw this plugin, otherwise false.

MBS.HostName = "MyMacM3.local"

Type Topic Plugin Version
const Registration MBS Main Plugin 14.0
The host the IDE was launched on for building an app.
Example
MsgBox mbs.HostName

Using this constant allows you to include details on who build the app in the application itself, e.g. for documentation.
The constant value is not in this documentation as it changes too often.

MBS.IsPrerelease = false

Type Topic Plugin Version
const Registration MBS Main Plugin 20.0
Wether this is a prerelease version of the plugin.

Value is true for beta versions and false for release.

MBS.Month = 3

Type Topic Plugin Version
const Registration MBS Main Plugin 23.0
The month of the plugin.
Example

MsgBox "Month: " + str(mbs.Month)

The month the plugin was compiled.
Can be used in #if conditions.

MBS.UserName = "Christian Schmitz"

Type Topic Plugin Version
const Registration MBS Main Plugin 14.0
The user name of the user who launched the IDE.
Example
MsgBox mbs.UserName

Using this constant allows you to include details on who build the app in the application itself, e.g. for documentation.
The constant value is not in this documentation as it changes too often.

MBS.Version = "MBS Xojo Plugin 24.1 (build 21067) Sun Mar 10 08:27:56 2024 (GMT)"

Type Topic Plugin Version
const Registration MBS Main Plugin 9.5
The plugin version string.
Example
MsgBox mbs.Version

MBS.VersionNumber = 24.1

Type Topic Plugin Version
const Registration MBS Main Plugin 19.5
The plugin version as number.
Example
#if MBS.VersionNumber > 20.0
// use newer code
#else
// use older code
#endif

MBS.VersionString = "24.1"

Type Topic Plugin Version
const Registration MBS Main Plugin 11.1
The plugin version string (only, the number part).
Example
MsgBox mbs.VersionString

e.g. "11.1"

MBS.Website = "http://www.monkeybreadsoftware.de"

Type Topic Plugin Version
const Registration MBS Main Plugin 9.5
The URL for the Monkeybread Software website.

ShowURL mbs.Website

MBS.Year = 2024

Type Topic Plugin Version
const Registration MBS Main Plugin 9.5
The year of the plugin.
Example
MsgBox str(mbs.Year)

The year the plugin was compiled.
Can be used in #if conditions.

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


The biggest plugin in space...