Class: MIDI::NoteOff

Inherits:
NoteEvent show all
Defined in:
lib/midilib/event.rb

Constant Summary

Constants inherited from NoteEvent

MIDI::NoteEvent::PITCHES

Instance Attribute Summary collapse

Attributes inherited from NoteEvent

#note, #velocity

Attributes inherited from ChannelEvent

#channel

Attributes inherited from Event

#delta_time, #print_channel_numbers_from_one, #print_decimal_numbers, #print_note_names, #status, #time_from_start

Instance Method Summary collapse

Methods inherited from NoteEvent

#data_as_bytes, #note_to_s, #pch_oct

Methods inherited from Event

#<=>, #channel_to_s, #data_as_bytes, #number_to_s, #quantize_to

Constructor Details

#initialize(channel = 0, note = 64, velocity = 64, delta_time = 0) ⇒ NoteOff

Returns a new instance of NoteOff.



152
153
154
# File 'lib/midilib/event.rb', line 152

def initialize(channel = 0, note = 64, velocity = 64, delta_time = 0)
  super(NOTE_OFF, channel, note, velocity, delta_time)
end

Instance Attribute Details

#onObject

Returns the value of attribute on.



150
151
152
# File 'lib/midilib/event.rb', line 150

def on
  @on
end

Instance Method Details

#to_sObject



156
157
158
159
# File 'lib/midilib/event.rb', line 156

def to_s
  super <<
    "off #{note_to_s} #{number_to_s(@velocity)}"
end