VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.Annotations Namespace / PdfLinkAnnotation Class / QuadPoints Property
Syntax Remarks Requirements SeeAlso
In This Topic
    QuadPoints Property (PdfLinkAnnotation)
    In This Topic
    Gets or sets an array of 4 x n points specifying the coordinates of n quadrilaterals in default user space that comprise the region in which the link should be activated (PDF 1.6).
    Syntax
    'Declaration
    
    <CategoryAttribute("Common")>
    <DescriptionAttribute("An array of 4 x n points specifying the coordinates of n quadrilaterals in default user space that comprise the region in which the link should be activated (PDF 1.6).")>
    <DefaultValueAttribute(null)>
    Public Property QuadPoints As System.Drawing.PointF[]
    
    
    [Category("Common")]
    [Description("An array of 4 x n points specifying the coordinates of n quadrilaterals in default user space that comprise the region in which the link should be activated (PDF 1.6).")]
    [DefaultValue(null)]
    public System.Drawing.PointF[] QuadPoints { get; set; }
    
    
    [Category("Common")]
    [Description("An array of 4 x n points specifying the coordinates of n quadrilaterals in default user space that comprise the region in which the link should be activated (PDF 1.6).")]
    [DefaultValue(null)]
    public: __property System.Drawing.PointF[] get_QuadPoints();
    public: __property void set_QuadPoints(
    System.Drawing.PointF[]* value
    );
    [Category("Common")]
    [Description("An array of 4 x n points specifying the coordinates of n quadrilaterals in default user space that comprise the region in which the link should be activated (PDF 1.6).")]
    [DefaultValue(null)]
    public:
    property System.Drawing.PointF[] QuadPoints { System.Drawing.PointF[] get(); void set(array<System.Drawing.PointF>^ value); }
    Remarks

    If this entry is not present or the viewer application does not recognize it, the region specified by the Rectangle entry should be used. QuadPoints should be ignored if any coordinate in the array lies outside the region specified by Rect.

    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