menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class VertexPoint - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class VertexPoint

    Represents a vertex point in the context of the SfPdfViewer.

    Inheritance
    System.Object
    VertexPoint
    Namespace: Syncfusion.Blazor.SfPdfViewer
    Assembly: Syncfusion.Blazor.SfPdfViewer.dll
    Syntax
    public class VertexPoint : Object
    Remarks

    The VertexPoint class is used to define a point in the coordinate space of the SfPdfViewer. It has properties X and Y representing the horizontal and vertical coordinates, respectively.

    Examples
    VertexPoint vertexPoint = new VertexPoint();
    vertexPoint.X = 10;
    vertexPoint.Y = 10;

    Constructors

    VertexPoint()

    Declaration
    public VertexPoint()

    Properties

    X

    Gets or sets the X-coordinate of the vertex point.

    Declaration
    public double X { get; set; }
    Property Value
    Type
    System.Double
    Remarks

    The X-coordinate represents the horizontal position of the vertex point in the coordinate space of the associated SfPdfViewer.

    Y

    Gets or sets the Y-coordinate of the vertex point.

    Declaration
    public double Y { get; set; }
    Property Value
    Type
    System.Double
    Remarks

    The Y-coordinate represents the vertical position of the vertex point in the coordinate space of the associated SfPdfViewer.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved