VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Drawing.GraphicsFigures Namespace / PdfAnnotationGraphicsFigure Class / GetIsTranslateTransform(PointF[],PointF[],PointF) Method
Syntax Requirements SeeAlso
In This Topic
    GetIsTranslateTransform(PointF[],PointF[],PointF) Method (PdfAnnotationGraphicsFigure)
    In This Topic
    Determines that points are translated.
    Syntax
    'Declaration
    
    Public Shared Function GetIsTranslateTransform( _
    ByVal sourcePoints
    The source points.
    () As System.Drawing.PointF, _
    ByVal transformedPoints
    The transformed points.
    () As System.Drawing.PointF, _
    ByRef translationVector
    The translation vector.
    As System.Drawing.PointF _
    ) As Boolean
    public static bool GetIsTranslateTransform(
    System.Drawing.PointF[] sourcePoints,
    System.Drawing.PointF[] transformedPoints,
    out System.Drawing.PointF translationVector
    )
    public: static bool GetIsTranslateTransform(
    System.Drawing.PointF[]* sourcePoints,
    System.Drawing.PointF[]* transformedPoints,
    [PARAMFLAG::Out] System.Drawing.PointF translationVector
    )
    public:
    static bool GetIsTranslateTransform(
    array<System.Drawing.PointF>^ sourcePoints,
    array<System.Drawing.PointF>^ transformedPoints,
    [Out] System.Drawing.PointF translationVector
    )

    Parameters

    sourcePoints
    The source points.
    transformedPoints
    The transformed points.
    translationVector
    The translation vector.

    Return Value

    True if points are translated, i.e. translate transform was applied to the sourcePoints; otherwise, false.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also