WPCubed WordProcessing "FormatStrings"
TextDynamic .NET and TextDynamic ActiveX:
You can specify the format string in the load and save functions, such as Memo.SaveToString, LoadFromString, SaveToFile etc.
 
WPTools 5 VCL:
It is possible to select a certain reader or writer using a 'format string'. This string is passed to load and save methods, such as LoadFromFile and also in the properties TextLoadFormat and TextSaveFormat. To select a certain reader or writer simply name it in the format string.
 
The format string starts with the format name:
 
Please use the the format names:
AUTO - use RTF when saving, used auto detection of format when loading
RTF - use RTF
WPT or WPTOOLS - use the HTML like native format
HTML - use HTML/CSS
UNICODE - use unicode format (2 bytes per char)
ANSI - use ANSI (note the option -codepage!)
 
You can pass options to the reader or writer after the format name.
Append it after a minus sign, i.e "HTML-onlybody".  Multiple options are separated by comma.
 
  Option "-..."
property "Opt..."
What it does RTF
READ
RTF
WRITE
HTML
READ
HTML
WRITE
WPT
READ
WPT
WRITE
ANSI
 
UNI-CODE
  codepage12xx set the code page XY for loading. Default is 1252 X   X       X  
  onlybody only load/write body part (no header + footer)   X   X X X    
  ignorefonts do not load font information X       X      
  ignorefontsize do not load font size information X       X      
  nostyles do not load or save styles X X     X X    
  nonumstyles do not load or save number styles X X     X X    
  noimages do not load or save images X X X   X X    
  basetext only save text in WPTOOLS format, no styles or other info                
  nomergefields do not save merge fields, only contents                
  nohyperlinks do not save hyperlinks                
  nobookmarks don't save bookmarks                
  novariables dont save or load "RTFVariables" (also known as  "Document Properties") X X       X    
  nobinary try to convert all binary to ASCII   X            
  nopageinfo do not save or load page size information   X     X X    
  ignorekeepn don't load the keepn flag from RTF X X     X X    
  ignorerowmerge do not load row merging from RTF X              
  ignorecollapsedpar don't save table rows which are hidden by WPReporter   X            
  dontaddrtfvariables only load those content of RTF variables which are present in collection X       X      
  complete load header and footer information although we are inserting text                
  alwaysembed embed image data also for linked images                
  nonumberprops the numbering will be saved as normal text. Number styles will not
      be saved either.
  X            
  nospanstyles span styles will not be saved as objects -only the properties will be saved.   X            
  nocharstyles don't write character styles (\cs)   X            
  ignorerowmerge If this flag is set the rowmerge property will be ignored when reading RTF code. X              
  dontfixattr If this property is true the RTF reader will not remove redundant attribute     information, such as fonts, indents etc. Redundant are attributes which are selected by  the paragraph styles or document font information (DefaultTextAttr). X              
  ignorerowheight Do not load and apply the absolute row height defined in RTF code. X              
  onlyusedstyles If this property is TRUE the RTF reader will only add the styles which are used. X              
  onlystandardheadfoot If this property is true the RTF writer will not save header and footer texts which
   rage is not defined by the RTF specifications, such as 'on last page'.
  X            
  NoStartTags The RTF and HTML writer do not create the standard RTF and HTML opening and closing sequence   X            
  abbreviated The WPTOOLS writer created abbreviated property codes           X    
  nosectiondata The WPTOOLS writer does not write section information           X    
  ignorehtml If this property is true the HTML reader will not use HTML tags. This is useful if also
        useBBCodes is used.
    X          
  usebbcodes If this property is tre the HTML will convert BB codes into HTML properties     X          
  nospanobjects This property  is true SPAN tags will not be embedded.     X          
  usecr If this property is true CR codes in the HTML text will be used as paragraph breaks     X