SchemaFactor.Vst.MidiMapperX.MainWindow.FillList C# (CSharp) Method

FillList() private method

private FillList ( ) : void
return void
        private void FillList()
        {
            if (_plugin == null) return;
               if ((!this.Created) || (_plugin.NoteMaps == null)) return;

            for (int note = 0; note < Constants.MAXNOTES; note++)
            {
                MapNoteItem map = _plugin.NoteMaps[note];

                if (map == null) return;

                MapNames[note].Text = map.KeyName;
                OnMaps[note].Text = map.OutputBytesStringOn;
                OffMaps[note].Text = map.OutputBytesStringOff;
                CCMaps[note].Text = map.OutputBytesStringCC;
            }
        }