Search found 8 matches

by emo
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: 13225

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 := PWideChar ...
by emo
Tue Jan 05, 2010 7:47 pm
Forum: Support
Topic: Vertical centered align in TRVReportHelper
Replies: 1
Views: 8877

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 ...
by emo
Tue Jan 08, 2008 6:34 pm
Forum: Support
Topic: Table's indent lost in RTF
Replies: 1
Views: 9368

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.
by emo
Wed Nov 28, 2007 2:01 am
Forum: Support
Topic: Bug on export of lists into RTF
Replies: 5
Views: 16661

One thing also - connecting to saving to rtf format. Actions "forget" about lists (bullets,numbering). When we save as RTF (f.e save readme.rvf with ActionTest as rtf) and open again we can see lists and add items to them but according buttons (with rvActionsResource.rvActionParaBullets1 ...
by emo
Thu Nov 22, 2007 3:45 pm
Forum: ScaleRichView
Topic: Disable automatic scaling when resizing
Replies: 6
Views: 27105

Thanks a lot for answers.
by emo
Thu Nov 22, 2007 2:39 pm
Forum: ScaleRichView
Topic: Disable automatic scaling when resizing
Replies: 6
Views: 27105

Sergey Tkachenko wrote:But if content width is changed when resizing without scaling, it would not be WYSIWYG.
Why? I see content with changed width and I get it. What does break WYSIWYG concepts?
Sergey Tkachenko wrote:This mode is implemented as "Web mode" in demos.
Which demo?
by emo
Thu Nov 22, 2007 3:28 am
Forum: ScaleRichView
Topic: Disable automatic scaling when resizing
Replies: 6
Views: 27105

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 ...
by emo
Wed Nov 21, 2007 7:47 pm
Forum: ScaleRichView
Topic: Disable automatic scaling when resizing
Replies: 6
Views: 27105

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.