AGS.Editor.ScintillaWrapper.ShowCurrentExecutionPoint C# (CSharp) Method

ShowCurrentExecutionPoint() public method

public ShowCurrentExecutionPoint ( int lineNumber ) : void
lineNumber int
return void
        public void ShowCurrentExecutionPoint(int lineNumber)
        {
            scintillaControl1.MarkerAdd(lineNumber - 1, MARKER_TYPE_CURRENT_STATEMENT);
            scintillaControl1.MarkerAdd(lineNumber - 1, MARKER_TYPE_CURRENT_STATEMENT2);
        }
ScintillaWrapper