예제 #1
0
파일: CfgSyntax.cs 프로젝트: fourtf/4Plug
        public override void TextRemoved(Range range)
        {
            base.TextRemoved(range);

            parseLine(range.Start.Y);
        }
예제 #2
0
파일: Syntax.cs 프로젝트: fourtf/4Plug
 public virtual void TextRemoved(Range range)
 {
 }
예제 #3
0
파일: CfgSyntax.cs 프로젝트: fourtf/4Plug
        public override void TextAdded(Range range)
        {
            base.TextAdded(range);

            parseLines(range.Start.Y, range.End.Y);
        }
예제 #4
0
파일: Syntax.cs 프로젝트: fourtf/4Plug
 public virtual void TextAdded(Range range)
 {
 }