Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Svg Namespace / SvgMatrix Class / CreateScale Method / CreateScale(Single,Single,PointF) Method
The value to scale by on the X axis.
The value to scale by on the Y axis.
The center offset.

In This Topic
    CreateScale(Single,Single,PointF) Method
    In This Topic
    Creates a scaling matrix that is offset by a given center point.
    Syntax
    'Declaration
     
    Public Overloads Shared Function CreateScale( _
       ByVal xScale As System.Single, _
       ByVal yScale As System.Single, _
       ByVal centerPoint As System.Drawing.PointF _
    ) As SvgMatrix
    public static SvgMatrix CreateScale( 
       System.float xScale,
       System.float yScale,
       System.Drawing.PointF centerPoint
    )

    Parameters

    xScale
    The value to scale by on the X axis.
    yScale
    The value to scale by on the Y axis.
    centerPoint
    The center offset.

    Return Value

    The scaling matrix.
    See Also