BinaryFileSchemaGUI.FastRichEdit.GetScrollPos C# (CSharp) 메소드

GetScrollPos() 개인적인 메소드

private GetScrollPos ( ) : Point
리턴 Point
        private unsafe Point GetScrollPos()
        {
            SeqPoint res = new SeqPoint();
            IntPtr ptr = new IntPtr(&res);
            Message m = Message.Create(this.Handle, EM_GETSCROLLPOS, IntPtr.Zero, ptr);
            this.WndProc(ref m);
            return new Point(res.x,res.y);
        }