FastColoredTextBoxNS.FileTextSource.FileTextSource C# (CSharp) Method

FileTextSource() public method

public FileTextSource ( FastColoredTextBox currentTB ) : System
currentTB FastColoredTextBox
return System
        public FileTextSource(FastColoredTextBox currentTB)
            : base(currentTB)
        {
            timer.Interval = 10000;
            timer.Tick += new EventHandler(timer_Tick);
            timer.Enabled = true;

            SaveEOL = Environment.NewLine;
        }