[This is preliminary documentation and is subject to change.]

Gets pointer to original window procedure

Namespace: Tools.WindowsT.NativeT
Assembly: Tools.Win (in Tools.Win.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
protected IntPtr OldWndProc { get; }
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _
Protected ReadOnly Property OldWndProc As IntPtr
	Get
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)]
protected:
property IntPtr OldWndProc {
	IntPtr get ();
}
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>]
member OldWndProc : IntPtr
JScript
function get OldWndProc () : IntPtr

Return Value

Original window procedure of window being sublcassed prior ts replecement by NewWndProc(IntPtr, WindowMessages, Int32, Int32)

See Also