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 MidiPacketMBS class.
MidiPacketMBS.DataMemory as MemoryBlock
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
property | MIDI | MBS MacCF Plugin | 3.3 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
Setting this value will automatically fill the DataString property, so both are in sync.
(Read and Write property)
MidiPacketMBS.DataString as String
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
property | MIDI | MBS MacCF Plugin | 3.3 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
Setting this value will automatically fill the DataMemory property, so both are in sync.
This will not work:
DataString="90 5A 7C"
But this is better:
DataString=chrb(&h90)+chrb(&h5A)+chrb(&h7C)
or with the DataMemory property:
m=newmemoryblock(3)
m.byte(0)=&h90
m.byte(1)=&h5A
m.byte(2)=&h7C
DataMemory=m
(Read and Write property)
MidiPacketMBS.TimeStamp as MemoryBlock Deprecated
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
property | MIDI | MBS MacCF Plugin | 3.3 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
A host clock time (64 bit value) representing the time of an event, as returned by MidiPacketMBS.CurrentTime.
As a convenience, you can use zero to use the current time.
And using nil for the memoryblock represents a value of zero (=now).
(Read and Write property)
MidiPacketMBS.TimeStampValue as UInt64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
property | MIDI | MBS MacCF Plugin | 7.0 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
A host clock time (64 bit value) representing the time of an event, as returned by MidiPacketMBS.CurrentTime.
As a convenience, you can use zero to use the current time.
(Read and Write property)
The items on this page are in the following plugins: MBS MacCF Plugin.