// Visual Appearance void CRichEditCtrlGS::SetWordWrap(const bool bOn/*= true*/,const int iLineWidth/* = 0*/) { if( bOn ) { SetTargetDevice(NULL, iLineWidth); } else { if( 0 == iLineWidth ) { SetTargetDevice(NULL, 1); } else { SetTargetDevice(NULL, iLineWidth); } } }
void CRichInfo::PreSubclassWindow() { SetBackgroundColor(FALSE,GetSysColor(COLOR_3DFACE)); // Set the control to word wrap the text SetTargetDevice(NULL,0); // Notify the parent window of the control's required size SetEventMask(ENM_REQUESTRESIZE); CRichEditCtrl::PreSubclassWindow(); }