menu

Blazor

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

    Show / Hide Table of Contents

    Class HyperlinkCreatedEventArgs

    Represents the arguments for the HyperlinkCreated event, including details about the newly created hyperlink.

    Inheritance
    System.Object
    HyperlinkCreatedEventArgs
    HyperlinkClickEventArgs
    Namespace: Syncfusion.Blazor.Spreadsheet
    Assembly: Syncfusion.Blazor.Spreadsheet.dll
    Syntax
    public class HyperlinkCreatedEventArgs : Object

    Constructors

    HyperlinkCreatedEventArgs()

    Declaration
    public HyperlinkCreatedEventArgs()

    Properties

    CellAddress

    Gets the CellAddress of the hyperlink.

    Declaration
    public string CellAddress { get; }
    Property Value
    Type Description
    System.String

    A System.String representing the cell location where the hyperlink is located. The default value is null.

    Remarks

    This property specifies the cell where the hyperlink is located in the active worksheet.

    The cell reference is in A1 notation format (e.g., "A1", "B5", "C10").

    DisplayText

    Gets the visible display name of the hyperlink.

    Declaration
    public string DisplayText { get; }
    Property Value
    Type Description
    System.String

    A System.String representing the text that appears in the cell for the hyperlink. The default value is null.

    Remarks

    This property defines the user-friendly text that is shown in the cell instead of the actual hyperlink address.

    The display name provides a meaningful description of the link destination while the actual navigation uses the URL or cell reference specified in the DisplayText property.

    Uri

    Gets the hyperlink address for navigation.

    Declaration
    public string Uri { get; }
    Property Value
    Type Description
    System.String

    A System.String that contains either a web URL or sheet cell reference in the format "SheetName!CellReference". The default value is null.

    Remarks

    This property supports both external web URLs (beginning with "http://" or "https://") and internal sheet references.

    For internal navigation, the format is "SheetName!CellReference" (e.g., "Sheet1!A10").

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