SVGBuilderExtensions.WordSpacing
Contents
[
Hide
]WordSpacing<TBuilder>(this TBuilder, Spacing)
Sets the ‘word-spacing’ attribute for an SVG element, specifying the spacing behavior between words.
public static TBuilder WordSpacing<TBuilder>(this TBuilder builder, Spacing value)
where TBuilder : IAttributeSetter, IPresentationAttributeSetter
Parameter | Description |
---|---|
TBuilder | The type of the SVG element builder. |
builder | The builder instance. |
value | The predefined word spacing value. |
Return Value
The builder instance for chaining.
See Also
- enum Spacing
- interface IAttributeSetter
- interface IPresentationAttributeSetter
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG
WordSpacing<TBuilder>(this TBuilder, double, LengthType)
Sets the ‘word-spacing’ attribute for an SVG element, specifying the spacing behavior between words with a custom value.
public static TBuilder WordSpacing<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 word spacing value. |
type | The unit type for the spacing value. |
Return Value
The builder instance for chaining.
See Also
- enum LengthType
- interface IAttributeSetter
- interface IPresentationAttributeSetter
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG