Search found 7 matches
- Mon Mar 09, 2015 3:05 am
- Forum: Examples, Demos
- Topic: [How to] How to save OLE objects in RTF
- Replies: 3
- Views: 58765
- Mon Mar 03, 2014 5:33 am
- Forum: Examples, Demos
- Topic: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
- Replies: 21
- Views: 276717
- Sun Mar 02, 2014 2:21 am
- Forum: Examples, Demos
- Topic: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
- Replies: 21
- Views: 276717
A procedure to trim Leading And Trailing Spaces in paragraph. Any suggestion is welcome. procedure TrimLeadingAndTrailingSpaces(RVData: TCustomRVData); var i,r,c: Integer; s: string; table: TRVTableItemInfo; begin for i := 0 to RVData.ItemCount - 1 do begin if RVData.IsParaStart(i) then begin if ...
- Fri Feb 28, 2014 5:54 am
- Forum: Examples, Demos
- Topic: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
- Replies: 21
- Views: 276717
A small improve, Replace Paragraph Breaks with space. procedure RemoveParagraphBreaks(RVData: TCustomRVData); var i,r,c: Integer; table: TRVTableItemInfo; s: string; begin for i := 0 to RVData.ItemCount-1 do if (i>0) and RVData.IsFromNewLine(i) and not RVData.GetItem(i).GetBoolValue(rvbpFullWidth ...
- Fri Oct 18, 2013 9:38 am
- Forum: Examples, Demos
- Topic: [Component] Using Shockwave Flash ActiveX in RichView
- Replies: 22
- Views: 303453
- Thu Jun 09, 2011 8:25 am
- Forum: Support
- Topic: how can RichViewEdit document save as *.mht?
- Replies: 3
- Views: 17355
- Wed Aug 31, 2005 1:42 pm
- Forum: Support
- Topic: Help about paste html
- Replies: 1
- Views: 17307
Help about paste html
I found richviewaction can support rvhtmlimport when paste content form IE.
Now i don't want use richviewaction, in my own code, how can i judge Html content in clipboard?
Thanks!
Now i don't want use richviewaction, in my own code, how can i judge Html content in clipboard?
Thanks!