Sticky Notes
Popup note annotations with multi-line text that embed in exported PDFs.
Sticky Notes
Provides popup note functionality:
- Content: Multi-line text editor
- Persistence: Notes embed in exported PDFs
- Visual Preview: Content appears as a popup overlay
Prop
Type
Implementation
import { PDFAtelier } from '@innosoft/pdf-atelier-react';
export default function StickyNotesExample() {
return (
<PDFAtelier
src="/document.pdf"
license="My License"
showNote={true}
showSelect={true}
showDelete={true}
/>
);
}import { Component } from '@angular/core';
import { PdfAtelierWrapper } from '@innosoft/pdf-atelier-angular';
@Component({
standalone: true,
selector: 'app-notes',
imports: [PdfAtelierWrapper],
template: `
<pdf-atelier-wrapper
[src]="'/document.pdf'"
[license]="'My License'"
[showNote]="true"
[showSelect]="true"
[showDelete]="true"
></pdf-atelier-wrapper>
`,
})
export class NotesComponent {}<script setup lang="ts">
import PdfAtelierWrapper from '@innosoft/pdf-atelier-vue';
</script>
<template>
<PdfAtelierWrapper
:src="'/document.pdf'"
:license="'My License'"
:showNote="true"
:showSelect="true"
:showDelete="true"
/>
</template>