Files
docx-js/src/file/paragraph/links/hyperlink.ts
2018-05-06 22:20:56 -05:00

21 lines
618 B
TypeScript

// http://officeopenxml.com/WPhyperlink.php
import { XmlComponent } from "file/xml-components";
import { TextRun } from "../run";
import { HyperlinkAttributes } from "./hyperlink-attributes";
export class Hyperlink extends XmlComponent {
public linkId: number;
constructor(text: string, relationshipsCount: number) {
super("w:hyperlink");
this.linkId = relationshipsCount + 1;
this.root.push(new HyperlinkAttributes({
id: `rId${this.linkId}`,
history: 1,
}));
this.root.push(new TextRun(text).style("Hyperlink"));
return this;
}
}