Platforms to show: All Mac Windows Linux Cross-Platform

Back to MBS module.

Previous items

MBS.HasTidyPlugin = true

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

MBS.HasTiffPlugin = true

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

MBS.HasTwainPlugin = true

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

MBS.HasWIAPlugin = true

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

MBS.HasWinDragDropPlugin = true

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

MBS.HasWinICMPlugin = true

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

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

The MBS Main Plugin will check on startup of the Xojo or Xojo IDE what plugins are is installed. This constant will be true if plugin is installed. If no plugins are found by our plugin, the constants will be missing.

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 = 1

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.0 (build 21048) Mon Jan 15 06:21:43 2024 (GMT)"

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

MBS.VersionNumber = 24.0

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.0"

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.

Previous items

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


💬 Ask a question or report a problem
The biggest plugin in space...