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

In This Topic
    Scale(Single,Single,Single,Single) Method
    In This Topic
    Applies the scaling transformation that is offset by a given center point.
    Syntax
    'Declaration
     
    Public Overloads Function Scale( _
       ByVal sx As System.Single, _
       ByVal sy As System.Single, _
       ByVal cx As System.Single, _
       ByVal cy As System.Single _
    ) As SvgMatrix
    public SvgMatrix Scale( 
       System.float sx,
       System.float sy,
       System.float cx,
       System.float cy
    )

    Parameters

    sx
    The value to scale by on the X axis.
    sy
    The value to scale by on the Y axis.
    cx
    X-coordinate of the center offset.
    cy
    Y-coordinate of the center offset.

    Return Value

    The scaled matrix.
    See Also