SchemaFactor.Vst.MidiMapperX.Plugin.ResetMaps C# (CSharp) Method

ResetMaps() public method

public ResetMaps ( ) : void
return void
        public void ResetMaps()
        {
            NoteMaps = new MapNoteItem[Constants.MAXNOTES];

            for (int note = 0; note < NoteMaps.Length; note++)
            {
                NoteMaps[note] = new MapNoteItem();
                NoteMaps[note].KeyName = "Undefined Map " + note;
            }
        }