Hi, how can i add text items manually and format each for themselves
i want to add:
this is a test with bold and italic items
rv.AddTextNLW('this is a test with ',0,paraStyle,paraStyle,true);
rv.AddTextNLW('bold',1,paraStyle,paraStyle,true);
rv.AddTextNLW(' and ',0,paraStyle,paraStyle,true);
...
insert crlf after each item. how can i prevent crlf?
Add Text manually to RVEdit
-
- Site Admin
- Posts: 17524
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Add Text manually to RVEdit
rv.AddTextNLW('this is a test with ',0,paraStyle,paraStyle,true);
rv.AddTextNLW('bold',1,-1,paraStyle,true);
rv.AddTextNLW(' and ',0,-1,paraStyle,true);
rv.AddTextNLW('bold',1,-1,paraStyle,true);
rv.AddTextNLW(' and ',0,-1,paraStyle,true);