AGS.Editor.ScintillaWrapper.InsideStringOrComment C# (CSharp) Метод

InsideStringOrComment() приватный Метод

Checks whether the cursor is inside a string literal or a comment.
private InsideStringOrComment ( bool charJustAdded ) : bool
charJustAdded bool Set to true if calling from OnCharAdded, /// because the new character won't have any formatting yet.
Результат bool
        private bool InsideStringOrComment(bool charJustAdded)
        {
            return InsideStringOrComment(charJustAdded, this.scintillaControl1.CurrentPos);
        }

Same methods

ScintillaWrapper::InsideStringOrComment ( bool charJustAdded, int position ) : bool
ScintillaWrapper