Angular 스프레드시트 하이퍼링크

    Angular 스프레드시트 구성 요소를 사용하면 Excel 통합 문서에 기존 하이퍼링크를 표시할 수 있을 뿐 아니라 통합 문서의 웹사이트, 파일 디렉터리, 심지어 다른 워크시트에 링크할 수 있는 새로운 하이퍼링크를 삽입할 수도 있습니다.

    Hyperlinks are added to the IgxSpreadsheetComponent control by accessing the Hyperlinks collection on the worksheet that you want to place the hyperlink on. This collection has an Add method that takes a WorksheetHyperlink object, where you can define the cell address, the hyperlink URL to be navigated to, the display text, and a tooltip to optionally be displayed on hover.

    Dependencies

    When setting up your Angular spreadsheet control to use hyperlinks, you will need to import the WorksheetHyperlink class like so:

    import { WorksheetHyperlink } from 'igniteui-angular-excel';
    

    Code Snippet

    The following code snippet demonstrates how to add a hyperlink to the currently viewed worksheet in the Angular IgxSpreadsheetComponent control:

    this.spreadsheet.activeWorksheet.hyperlinks().add(new WorksheetHyperlink("A1", "http://ko.infragistics.com", "Infragistics", "Infragistics Home Page"));
    

    API References