| 
       << Click to display table of contents >> TRVHTMLReaderProperties.FontSizePrecision | 
    
Defines the precision of font size calculation for text loaded from HTML
type // defined in RVStyle.pas
  TRVFontSizePrecision = (
    rvfpPoints,
    rvfpHalfPoints,
    rvfpMax        
  );
property FontSizePrecision: TRVFontSizePrecision;
(introduced in version 21)
Value  | 
Meaning  | 
|---|---|
rvfpPoints  | 
Precision: 1 point (font sizes are loaded as integer values)  | 
rvfpHalfPoints  | 
Precision: 1/2 of a point (font sizes like 10.5 points are possible)  | 
rvfpMax  | 
VCL and LCL: the same as rvfpHalfPoints FireMonkey: maximum prevision, font sizes may be loaded as fractional values.  | 
Default value:
rvfpHalfPoints