Platforms to show: All Mac Windows Linux Cross-Platform
ArrayDoubleMBS(paramArray values as Double) as Double()
Function:
Creates an array with given values.
Example:
Notes:
With picking the right array function (ArrayDoubleMBS, ArrayStringMBS, ArrayInt64MBS, ArrayVariantMBS or ArrayIntegerMBS), you define what type of array you like. The Array function determinates the type based on value types, so it often isn't what we want.
Pass as many parameters as needed, just like Array() function.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
global method | XojoRuntime | MBS Util Plugin | 20.5 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
// works
Dim a() As Double = ArrayDoubleMBS(1, 2, 3)
// failes
Dim b() As Double = Array(1,2,3)
With picking the right array function (ArrayDoubleMBS, ArrayStringMBS, ArrayInt64MBS, ArrayVariantMBS or ArrayIntegerMBS), you define what type of array you like. The Array function determinates the type based on value types, so it often isn't what we want.
Pass as many parameters as needed, just like Array() function.
Blog Entries
- News from the MBS Xojo Plugins Version 20.5
- MBS Xojo Plugins in version 20.5
- MBS Xojo Plugins, version 20.5pr3
Xojo Developer Magazine
The items on this page are in the following plugins: MBS Util Plugin.
