VintaSoft Imaging .NET SDK 14.1: Documentation for .NET developer
Vintasoft.Imaging.Annotation Namespace / LeaderLineAnnotationData Class / GetBoundPoints(AnnotationData,AnnotationData,PointF,PointF) Method
Syntax Requirements SeeAlso
In This Topic
    GetBoundPoints(AnnotationData,AnnotationData,PointF,PointF) Method (LeaderLineAnnotationData)
    In This Topic
    Returns start and end points, in device-independent pixels (1/96th inch) in the content space, that connects specified annotations.
    Syntax
    'Declaration
    
    Protected Overridable Sub GetBoundPoints( _
    ByVal startAnnotation
    Start annotation data.
    As AnnotationData, _
    ByVal endAnnotation
    End annotation data.
    As AnnotationData, _
    ByRef startBoundPoint
    Point, in device-independent pixels (1/96th inch), in the content space, which belongs to the startAnnotation.
    As System.Drawing.PointF, _
    ByRef endBoundPoint
    Point, in device-independent pixels (1/96th inch), in the content space, which belongs to the endAnnotation.
    As System.Drawing.PointF _
    )
    protected virtual void GetBoundPoints(
    AnnotationData startAnnotation,
    AnnotationData endAnnotation,
    out System.Drawing.PointF startBoundPoint,
    out System.Drawing.PointF endBoundPoint
    )
    protected: virtual void GetBoundPoints(
    AnnotationData* startAnnotation,
    AnnotationData* endAnnotation,
    [PARAMFLAG::Out] System.Drawing.PointF startBoundPoint,
    [PARAMFLAG::Out] System.Drawing.PointF endBoundPoint
    )
    protected:
    virtual void GetBoundPoints(
    AnnotationData^ startAnnotation,
    AnnotationData^ endAnnotation,
    [Out] System.Drawing.PointF startBoundPoint,
    [Out] System.Drawing.PointF endBoundPoint
    )

    Parameters

    startAnnotation
    Start annotation data.
    endAnnotation
    End annotation data.
    startBoundPoint
    Point, in device-independent pixels (1/96th inch), in the content space, which belongs to the startAnnotation.
    endBoundPoint
    Point, in device-independent pixels (1/96th inch), in the content space, which belongs to the endAnnotation.
    Requirements

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

    See Also