Defines the SVG text rendering type, which provides a hint to the SVG library about what tradeoffs to make as it renders text.
Namespace: FMX.RS.SVGTypes
Delphi
|
type
TSVGTextRendering = (txrnNone,
txrnAuto,
txrnOptimizeSpeed,
txrnOptimizeLegibility,
txrnGeometricPrecision);
|
|
Name
|
Description
|
|
txrnAuto
|
Make appropriate tradeoffs to balance speed, legibility and geometric precision, but with legibility given more importance than speed and geometric precision.
|
|
txrnGeometricPrecision
|
Emphasize geometric precision over legibility and rendering speed.
|
|
txrnNone
|
Represents constant txrnNone.
|
|
txrnOptimizeLegibility
|
Emphasize legibility over rendering speed and geometric precision.
|
|
txrnOptimizeSpeed
|
Emphasize rendering speed over legibility and geometric precision.
|
Top
|