SVGBuilderExtensions.FontKerning
Contents
[
Hide
]FontKerning<TBuilder>(this TBuilder, double, LengthType)
Sets the ‘font-kerning’ attribute for an SVG element using a numeric value and a specific length type.
public static TBuilder FontKerning<TBuilder>(this TBuilder builder, double value,
LengthType type = LengthType.Px)
where TBuilder : IAttributeSetter, IPresentationAttributeSetter
Parameter | Description |
---|---|
TBuilder | The type of the SVG element builder. |
builder | The builder instance. |
value | The font kerning value to set. |
type | The length type (e.g., px, em). |
Return Value
The builder instance for chaining.
See Also
- enum LengthType
- interface IAttributeSetter
- interface IPresentationAttributeSetter
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG
FontKerning<TBuilder>(this TBuilder, Kerning)
Sets the ‘font-kerning’ attribute for an SVG element using a predefined kerning value.
public static TBuilder FontKerning<TBuilder>(this TBuilder builder, Kerning value)
where TBuilder : IAttributeSetter, IPresentationAttributeSetter
Parameter | Description |
---|---|
TBuilder | The type of the SVG element builder. |
builder | The builder instance. |
value | The predefined kerning value to set. |
Return Value
The builder instance for chaining.
See Also
- enum Kerning
- interface IAttributeSetter
- interface IPresentationAttributeSetter
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG