SVGBuilderExtensions.BaselineShift
Contents
[
Hide
]BaselineShift(this TBuilder, BaseLineShift) 
Sets the ‘baseline-shift’ attribute for an SVG element using a predefined value.
public static TBuilder BaselineShift<TBuilder>(this TBuilder builder, BaseLineShift value)
    where TBuilder : IAttributeSetter, IPresentationAttributeSetter
| Parameter | Description | 
|---|---|
| TBuilder | The type of the SVG element builder. | 
| builder | The builder instance. | 
| value | The baseline shift value to set. | 
Return Value
The builder instance for chaining.
See Also
- enum BaseLineShift
- interface IAttributeSetter
- interface IPresentationAttributeSetter
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG
BaselineShift(this TBuilder, double, LengthType) 
Sets the ‘baseline-shift’ attribute for an SVG element using a numeric value.
public static TBuilder BaselineShift<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 numeric value for baseline shift. | 
| type | The type of length unit. | 
Return Value
The builder instance for chaining.
See Also
- enum LengthType
- interface IAttributeSetter
- interface IPresentationAttributeSetter
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG