ARCed.Scintilla.LineCollection.Join C# (CSharp) 메소드

Join() 공개 메소드

public Join ( int startLine, int endLine ) : void
startLine int
endLine int
리턴 void
        public void Join(int startLine, int endLine)
        {
            NativeScintilla.SetTargetStart(startLine);
            NativeScintilla.SetTargetEnd(endLine);
            Scintilla.DirectMessage(NativeMethods.SCI_LINESJOIN, IntPtr.Zero, IntPtr.Zero);
        }