ARCed.Scintilla.LineCollection.Join C# (CSharp) Method

Join() public method

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