ReadMe.txt
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:4k
源码类别:

RichEdit

开发平台:

Delphi

  1. ================================================================
  2. ========================= Demo projects ========================
  3.                           For Delphi
  4. ================================================================
  5. See also Tutorial.txt
  6. EditorEditor 1
  7.    TRichViewEdit-based editors. Demonstrates editor with fixed
  8.    set of styles, saving and loading, inserting items of different 
  9.    types, tables, list styles.
  10. EditorEditor 2
  11.    How to implement RichEdit-style editing operations
  12.    (make bold, apply font, etc.)
  13. MultiDemo
  14.    Several demos in one application
  15. DB Demo
  16.    3 demo projects
  17.    - using TDBRichViewEdit
  18.    - using TDBRichView and TRichViewEdit
  19.    - using DBGrid
  20. OfficeConverters
  21.    Demo for TRVOfficeConverter.
  22.    Sample HTML file is included.
  23.    It's recommended to use it with free Anders Melander's TGifImage,
  24.    http://www.torry.net/vcl/graphics/gif/gifimage.exe
  25.    See comments in the source code.
  26. ================================================================
  27. ============== Demos in ASSORTED subdirectory ==================
  28. ================================================================
  29. Load RVF
  30.    How to load file created in editor demo (EditorEditor 1)
  31. Save HTML  (D3+)
  32.    Loading RVF files (created in editor demo) and saving
  33.    them in HTML using advanced features.
  34.    (uses free Anders Melander's TGifImage,
  35.    http://www.torry.net/vcl/graphics/gif/gifimage.exe,
  36.    but can be modified to work with other GIF implementations
  37.    supporting assignment from other graphic formats)
  38. Search and Replace
  39.   Using search and replace dialogs with TRichViewEdit
  40. PlanetQuiz
  41.   Using tables, OnMouseMove and GetItemAt
  42. ========= Printing ========= 
  43. PrintingPrinting
  44.    How to print document. OnPagePrepaint event is used
  45.    to draw page numbers
  46. PrintingHeaders
  47.    Printing documents with headers and footers. Loading
  48.    RTF files with headers and footers.
  49. PrintingReportHelper
  50.    Printing using TRVReportHelper. Printing with one and
  51.    two columns.
  52. ========= IMAGES ========= 
  53. GraphicsToImage
  54.    Draws RichView document onto metafile canvas
  55. GraphicsEmoticons
  56.    Replaces :) :( :| with images
  57. GraphicsDragImg
  58.    Inserts dropped image in editor
  59. GraphicsSharedImages
  60.    Storing graphics outside of RVF files.
  61. ========= CUSTOM DRAWING =========
  62. Custom DrawCustomDraw
  63.    Custom drawing in RichView.
  64.    (Delphi3+ is required, since
  65.     TBitmap.ScanLines property was used)
  66. Custom DrawMathematics
  67.    One more example of custom drawing (math-style)
  68. ========= HYPERTEXT FEATURES =========
  69. HypertextURLs
  70.   Demo scans for URLs in text and makes them hypertext links.
  71. HypertextCreateHyperlink
  72.   Converts selected text to hyperlinks
  73. HypertextPhoneBook
  74.   Simple phonebook example: listbox-like selection using
  75.   hypertext.  
  76. ========= INTERNATIONAL FEATURES =========
  77. InternationalRTL
  78.   Using BiDiMode - displaying Hebrew and Arabic text (D3+)
  79. InternationalAccents
  80.   Shows processing of combined Unicode characters 
  81.   (D3+, best viewed on WinNT/2000/XP)
  82. ========= DEMONSTRATION OF FIELDS =========
  83. FieldsLiveLink
  84.   Changes in RichViewEdit are reflected in edit box and vice versa
  85. FieldsFillInGaps
  86.   Allows to type text only in special fields in the document
  87. FieldsMailMerge
  88.   Two projects. The first one allows editing template with fields, 
  89.   the second projects fills this template with values
  90. FieldsMailMerge2
  91.   Advanced version. Instead of changing text of text items
  92.   representing fields, this demo replaces fields with
  93.   arbitrary RVF contents.
  94. FieldsSpreadsheet
  95.   Field values are calculated automatically
  96. ========= BULLETS AND NUMBERING =========
  97. ListStylesBullets
  98.   How to apply paragraph bullets and numbering
  99. ListStylesImageListBullets
  100.   Shows bullets with image list.