Indicates how the user agent should determine the spacing between glyphs that are to be rendered along a path
Note
|
Currently, auto is not supported
|
Namespace: FMX.RS.SVGTypes
Delphi
|
type
TSVGTextPathSpacing = (
tpsNone,
tpsExact,
tpsAuto);
|
|
Name
|
Description
|
|
tpsAuto
|
Indicates that the user agent should use text-on-a-path layout algorithms to adjust the spacing between glyphs in order to achieve visually appealing results.
|
|
tpsExact
|
Indicates that the glyphs should be rendered exactly according to the spacing rules as specified in Text on a path layout rules.
|
|
tpsNone
|
Equivalent to Exact
|
Top
|