Class SequenceNumberEvent
Represents a Sequence Number meta event.
Inherited Members
Namespace: Melanchall.DryWetMidi.Core
Assembly: Melanchall.DryWetMidi.dll
Syntax
public sealed class SequenceNumberEvent : MetaEvent
Remarks
The MIDI sequence number meta message defines the number of a sequence in type 0 and 1 MIDI files,
or the pattern number in type 2 MIDI files.
Constructors
SequenceNumberEvent()
Initializes a new instance of the SequenceNumberEvent.
Declaration
public SequenceNumberEvent()
SequenceNumberEvent(ushort)
Initializes a new instance of the SequenceNumberEvent with the
specified number of a sequence.
Declaration
public SequenceNumberEvent(ushort number)
Parameters
Type | Name | Description |
---|---|---|
ushort | number | The number of a sequence. |
Properties
Number
Gets or sets the number of a sequence.
Declaration
public ushort Number { get; set; }
Property Value
Type | Description |
---|---|
ushort |
Methods
CloneEvent()
Clones event by creating a copy of it.
Declaration
protected override MidiEvent CloneEvent()
Returns
Type | Description |
---|---|
MidiEvent | Copy of the event. |
Overrides
GetContentSize(WritingSettings)
Gets the size of the content of a MIDI meta event.
Declaration
protected override int GetContentSize(WritingSettings settings)
Parameters
Type | Name | Description |
---|---|---|
WritingSettings | settings | Settings according to which the event's content must be written. |
Returns
Type | Description |
---|---|
int | Size of the event's content. |
Overrides
ReadContent(MidiReader, ReadingSettings, int)
Reads content of a MIDI meta event.
Declaration
protected override void ReadContent(MidiReader reader, ReadingSettings settings, int size)
Parameters
Type | Name | Description |
---|---|---|
MidiReader | reader | Reader to read the content with. |
ReadingSettings | settings | Settings according to which the event's content must be read. |
int | size | Size of the event's content. |
Overrides
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |
Overrides
WriteContent(MidiWriter, WritingSettings)
Writes content of a MIDI meta event.
Declaration
protected override void WriteContent(MidiWriter writer, WritingSettings settings)
Parameters
Type | Name | Description |
---|---|---|
MidiWriter | writer | Writer to write the content with. |
WritingSettings | settings | Settings according to which the event's content must be written. |