Word wrap is not working...
Word wrap is not working...
I have some documents where word wrap is not working and I have no idea why this can happen. And nothing special in ruler too.
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Possible reasons:
- RichViewEdit.WordWrap = False (unlikely, because this property is not saved in files)
- paragraphs have rvpaoNoWrap in Options
- RichViewEdit.MinTextWidth > 0 (this property is saved/loaded from RVF, if rvfoLoadLayout and rvfoSaveLayout are included in RVFOptions)
If it is because of some different reason, please send me one such document by e-mail.
- RichViewEdit.WordWrap = False (unlikely, because this property is not saved in files)
- paragraphs have rvpaoNoWrap in Options
- RichViewEdit.MinTextWidth > 0 (this property is saved/loaded from RVF, if rvfoLoadLayout and rvfoSaveLayout are included in RVFOptions)
If it is because of some different reason, please send me one such document by e-mail.
This helped:
Code: Select all
RichViewEdit1.MinTextWidth:=0;
RichViewEdit1.MaxTextWidth:=0;