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

IgnoringCurrentLine() private method

private IgnoringCurrentLine ( ) : bool
return bool
        private bool IgnoringCurrentLine()
        {
            if (_ignoreLinesWithoutIndent)
            {
                int lineNumber = scintillaControl1.LineFromPosition(scintillaControl1.CurrentPos);
                int lineIndent = scintillaControl1.GetLineIndentation(lineNumber);
                if (lineIndent == 0)
                {
                    return true;
                }
            }
            return false;
        }
ScintillaWrapper