Look also here
http://www.trichview.com/forums/viewtopic.php?t=22&highlight=cfunicodetext
I use this code for pasting only text
in OnPaste event handler of TRichViewEdit
var s: wideString; Data: THandle;
Clipboard.Open;
Data := GetClipboardData(CF_UNICODETEXT);
try
if Data <> 0 then
s ...
Search found 8 matches
- Tue Jan 05, 2010 8:02 pm
- Forum: Support
- Topic: How can I get plain text when I paste from MS Word?
- Replies: 3
- Views: 14304
- Tue Jan 05, 2010 7:47 pm
- Forum: Support
- Topic: Vertical centered align in TRVReportHelper
- Replies: 1
- Views: 9522
Vertical centered align in TRVReportHelper
Hi.
Does VAlign propertry in TRVReportHelper have any affects?
I set its value but nothing happened.
RVReportHelper1.RichView.VAlign:=tlCenter;
Then I draw to MetaCanvas
RVReportHelper1.DrawPage(1, MetaCanvas, False, Height);
It seems text is shown always as VAlign=tlTop.
I would like to have ...
Does VAlign propertry in TRVReportHelper have any affects?
I set its value but nothing happened.
RVReportHelper1.RichView.VAlign:=tlCenter;
Then I draw to MetaCanvas
RVReportHelper1.DrawPage(1, MetaCanvas, False, Height);
It seems text is shown always as VAlign=tlTop.
I would like to have ...
- Tue Jan 08, 2008 6:34 pm
- Forum: Support
- Topic: Table's indent lost in RTF
- Replies: 1
- Views: 10079
Table's indent lost in RTF
Hi.
It seems we loose table's indents after saving it in RTF.
F.e. run ActionTest.exe, insert table, select it, increase indent (Hanging Indent at Ruler), save as RTF, open again. Indenting are being lost. If we save as RVF then it opens properly.
It seems we loose table's indents after saving it in RTF.
F.e. run ActionTest.exe, insert table, select it, increase indent (Hanging Indent at Ruler), save as RTF, open again. Indenting are being lost. If we save as RVF then it opens properly.
- Wed Nov 28, 2007 2:01 am
- Forum: Support
- Topic: Bug on export of lists into RTF
- Replies: 5
- Views: 18556
- Thu Nov 22, 2007 3:45 pm
- Forum: ScaleRichView
- Topic: Disable automatic scaling when resizing
- Replies: 6
- Views: 31560
- Thu Nov 22, 2007 2:39 pm
- Forum: ScaleRichView
- Topic: Disable automatic scaling when resizing
- Replies: 6
- Views: 31560
- Thu Nov 22, 2007 3:28 am
- Forum: ScaleRichView
- Topic: Disable automatic scaling when resizing
- Replies: 6
- Views: 31560
Hi Ilya.
I already tried that property. I did it in demo ActionTest.Set ZoomMode:=rvzmCustom in IDE, then just added one Button and onClick increased width:=width+10 of component and saw changing of scale(zoom). But then I noticed that ZoomMode have been changed to rvzmPageWidth (may be somewhere in ...
I already tried that property. I did it in demo ActionTest.Set ZoomMode:=rvzmCustom in IDE, then just added one Button and onClick increased width:=width+10 of component and saw changing of scale(zoom). But then I noticed that ZoomMode have been changed to rvzmPageWidth (may be somewhere in ...
- Wed Nov 21, 2007 7:47 pm
- Forum: ScaleRichView
- Topic: Disable automatic scaling when resizing
- Replies: 6
- Views: 31560
Disable automatic scaling when resizing
Hi.
Is there a way to disable scaling (zooming) of document content when we resize it. I could not find that. Personally I prefer behavior of content of RichView on resizing and want to set scaling (zoom) manually.
Is there a way to disable scaling (zooming) of document content when we resize it. I could not find that. Personally I prefer behavior of content of RichView on resizing and want to set scaling (zoom) manually.