static CPen* FromHandle( HPEN hPen );
hPen
HPEN handle to Windows GDI pen.
Returns a pointer to a CPen object given a handle to a Windows GDI pen object. If a CPen object is not attached to the handle, a temporary CPen object is created and attached. This temporary CPen object is valid only until the next time the application has idle time in its event loop, at which time all temporary graphic objects are deleted. In other words, the temporary object is only valid during the processing of one window message.
A pointer to a CPen object if successful; otherwise NULL.