ScreenToGif.Modern.InsertText C# (CSharp) Method

InsertText() public method

Insert text in the picture with specific font and color.
public InsertText ( String text ) : void
text String Content to insert
return void
        public void InsertText(String text)
        {
            this.Cursor = Cursors.WaitCursor;

            ApplyActionToFrames("AddText", ActionEnum.AddText, 0, text);
            GC.Collect();

            this.Cursor = Cursors.Default;
        }
Modern