SVGBuilderExtensions.Dy
Contents
[
Hide
]Dy<TBuilder>(this TBuilder, double[], LengthType)
Sets multiple vertical adjustment values for the text content.
public static TBuilder Dy<TBuilder>(this TBuilder builder, double[] values,
LengthType type = LengthType.Px)
where TBuilder : ISVGElementBuilder, ITextContentPositioningAttributeSetter
Parameter | Description |
---|---|
TBuilder | The type of the SVG element builder. |
builder | The SVG element builder. |
values | The array of vertical adjustment values. |
type | The type of length unit for the values. |
Return Value
The builder instance for chaining.
Remarks
This method sets the ‘dy’ attribute with multiple values, allowing for individual vertical adjustments for each character or text segment.
See Also
- enum LengthType
- interface ISVGElementBuilder
- interface ITextContentPositioningAttributeSetter
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG
Dy<TBuilder>(this TBuilder, double, LengthType)
Sets a single vertical adjustment value for the text content.
public static TBuilder Dy<TBuilder>(this TBuilder builder, double value,
LengthType type = LengthType.Px)
where TBuilder : ISVGElementBuilder, ITextContentPositioningAttributeSetter
Parameter | Description |
---|---|
TBuilder | The type of the SVG element builder. |
builder | The SVG element builder. |
value | The vertical adjustment value. |
type | The type of length unit for the value. |
Return Value
The builder instance for chaining.
Remarks
This method sets the ‘dy’ attribute with a single value, adjusting the vertical position of the text content.
See Also
- enum LengthType
- interface ISVGElementBuilder
- interface ITextContentPositioningAttributeSetter
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG