AGS.Editor.ScriptEditor.scintilla_TextModified C# (CSharp) 메소드

scintilla_TextModified() 개인적인 메소드

private scintilla_TextModified ( int startPos, int length, bool wasAdded ) : void
startPos int
length int
wasAdded bool
리턴 void
        private void scintilla_TextModified(int startPos, int length, bool wasAdded)
        {
            _editorTextModifiedSinceLastCopy = true;
            int adjustment = length;
            if (!wasAdded)
            {
                adjustment = -length;
            }
            AdjustStartOfFunctionsInScript(startPos, adjustment);
        }