alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class VertexPoint

    Represents a vertex point in the context of the SfPdfViewer.

    Inheritance
    object
    VertexPoint
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.SfPdfViewer
    Assembly: Syncfusion.Blazor.SfPdfViewer.dll
    Syntax
    public class VertexPoint
    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
    [JsonPropertyName("x")]
    public double X { get; set; }
    Property Value
    Type
    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
    [JsonPropertyName("y")]
    public double Y { get; set; }
    Property Value
    Type
    double
    Remarks

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

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