Platforms to show: All Mac Windows Linux Cross-Platform

Back to zxingBitArrayMBS class.

zxingBitArrayMBS.clear

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Clears the array.
Example
dim b as new zxingBitArrayMBS(10)
b.set(2)
// show
MsgBox b.Text
// clear the bits
b.clear
// and show again
MsgBox b.Text

zxingBitArrayMBS.Constructor(size as Integer)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The constructor.

zxingBitArrayMBS.get(index as Integer) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Queries value of an item in array.

zxingBitArrayMBS.getNextSet(fromIndex as Integer) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Queries next set bit.

zxingBitArrayMBS.getNextUnset(fromIndex as Integer) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Finds next unset array index.

zxingBitArrayMBS.isRange(start as Integer, ende as Integer, value as boolean) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Efficient method to check if a range of bits is set, or not set.

zxingBitArrayMBS.reverse

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Reverses the bit array.
Example
dim b as new zxingBitArrayMBS(10)
b.set(2)
// show
MsgBox b.Text
// reverse the bits
b.reverse
// and show again
MsgBox b.Text

This does reverse order, not inverse the values.

zxingBitArrayMBS.set(index as Integer)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets a bit.
Example
dim b as new zxingBitArrayMBS(10)
// show
MsgBox b.Text
// set a bit
b.set(5)
// and show again
MsgBox b.Text

zxingBitArrayMBS.setBulk(index as Integer, newBits as Integer)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Barcode MBS Barcode Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets bits from integer.
Example
dim b as new zxingBitArrayMBS(10)
// show
MsgBox b.Text
// set the bits
b.setBulk(2, &b101010101)
// and show again
MsgBox b.Text

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


The biggest plugin in space...