ARCed.Controls.EventTextBox.Parse C# (CSharp) Метод

Parse() публичный Метод

Converts an array list of RPG.EventCommands and converts it into a format that can be displayed in the event editor.
Painting of the TextBox is automatically suspended until all commands are translated and added to the control.
public Parse ( List list ) : void
list List Collection of commands
Результат void
        public void Parse(List<dynamic> list)
        {
            this.SuspendPainting();
            Clear();
            foreach (EventCommand command in list)
                this.Translate(command.code, command.indent, command.parameters);
            this.ResumePainting(true);
        }