Skip to content

Imperative Handle

PowerPointViewer exposes an imperative API via Vue's defineExpose, retrievable through a template ref typed as PowerPointViewerExpose.

vue
<script setup lang="ts">
import { PowerPointViewer, type PowerPointViewerExpose } from 'pptx-vue-viewer';
import { ref } from 'vue';

const props = defineProps<{ content: Uint8Array }>();
const viewer = ref<PowerPointViewerExpose>();

async function save(): Promise<void> {
	const bytes = await viewer.value?.getContent();
	if (bytes) {
		// persist `bytes` (a Uint8Array)
	}
}
</script>

<template>
	<button @click="save">Save</button>
	<button @click="viewer?.goNext()">Next Slide</button>
	<button @click="viewer?.undo()">Undo</button>
	<PowerPointViewer ref="viewer" :content="props.content" can-edit />
</template>

Interface

PowerPointViewerExpose extends the shared PowerPointViewerAPI contract (defined in pptx-viewer-shared) plus getContent. All three framework bindings (React, Vue, Angular) expose the same API surface; React reaches it through forwardRef + PowerPointViewerHandle, Vue through defineExpose, Angular through public component methods.

ts
import type { PowerPointViewerExpose } from 'pptx-vue-viewer';
import type { ViewerMode, PowerPointViewerAPI } from 'pptx-viewer-shared';

Methods

Serialization

MethodSignatureDescription
getContent() => Promise<Uint8Array>Serializes the current document to .pptx bytes on demand.
MethodSignatureDescription
goTo(slideIndex: number) => voidNavigate to a specific slide (zero-based).
goPrev() => voidNavigate to the previous slide.
goNext() => voidNavigate to the next slide.

Undo / Redo

MethodSignatureDescription
undo() => voidUndo the last editing action.
redo() => voidRedo the last undone action.
canUndo() => booleanWhether an undo action is available.
canRedo() => booleanWhether a redo action is available.

Zoom

MethodSignatureDescription
getZoom() => numberGet the current zoom level (1 = 100%).
setZoom(level: number) => voidSet the zoom level (clamped to 0.2 - 3.0).
zoomIn() => voidZoom in by one step (10%).
zoomOut() => voidZoom out by one step (10%).
zoomReset() => voidReset zoom to 100%.

Zoom range differs slightly from React

The Vue viewer clamps zoom to 0.2 - 3.0 (300%); the React viewer clamps to 0.2 - 5.0 (500%).

Mode

MethodSignatureDescription
getMode() => ViewerModeGet the current viewer mode.
setMode(mode: ViewerMode) => voidSwitch mode ('preview', 'edit', 'present', 'master').

Read-only State

MethodSignatureDescription
getActiveSlideIndex() => numberGet the zero-based active slide index.
setActiveSlideIndex(index: number) => voidSet the active slide (alias of goTo).
getSlideCount() => numberGet the total number of slides.
isDirty() => booleanWhether the document has unsaved changes.

Slide Access

All slide methods return full PptxSlide objects from pptx-viewer-core with complete type information (elements, notes, transitions, animations, etc.).

MethodSignatureDescription
getSlides() => readonly PptxSlide[]Get all slides in the deck.
getSlide(index: number) => PptxSlide | undefinedGet a slide by zero-based index.
getActiveSlide() => PptxSlide | undefinedGet the currently active slide.

Slide Manipulation

MethodSignatureDescription
addSlide(afterIndex?: number) => voidAdd a blank slide (after active by default).
deleteSlides(indexes: number[]) => voidDelete slides at indexes (keeps at least one).
duplicateSlides(indexes: number[]) => voidDuplicate slides at indexes.
moveSlide(from: number, to: number) => voidMove a slide from one position to another.
toggleHideSlides(indexes: number[]) => voidToggle the hidden flag on slides.

Element Access

All element methods return full PptxElement objects (discriminated union of text, shape, image, table, chart, connector, group, etc.) with complete type-specific properties.

MethodSignatureDescription
getElements(slideIndex?: number) => readonly PptxElement[]Get elements (active slide by default).
getElementById(id: string, slideIndex?: number) => PptxElement | undefinedGet element by ID.

Element Manipulation

MethodSignatureDescription
updateElement(id: string, updates: Partial<PptxElement>) => voidPatch element properties.
deleteElements(ids: string[]) => voidDelete elements by ID.
duplicateElement(id: string) => string | undefinedDuplicate; returns new element ID.

Selection

MethodSignatureDescription
getSelectedElementIds() => string[]Get IDs of currently selected elements.
selectElements(ids: string[]) => voidProgrammatically select elements by ID.
clearSelection() => voidClear the current selection.

Example: external controls

vue
<script setup lang="ts">
import type { PowerPointViewerExpose } from 'pptx-vue-viewer';
import { computed } from 'vue';

const props = defineProps<{ viewer: PowerPointViewerExpose | undefined }>();
const slide = computed(() => props.viewer?.getActiveSlide());
</script>

<template>
	<div>
		<button @click="viewer?.goPrev()">Prev</button>
		<button @click="viewer?.goNext()">Next</button>
		<span>Slide {{ (viewer?.getActiveSlideIndex() ?? 0) + 1 }}</span>
		<span>{{ slide?.elements.length }} elements</span>
		<button @click="viewer?.zoomIn()">Zoom In</button>
		<button @click="viewer?.zoomOut()">Zoom Out</button>
		<button :disabled="!viewer?.canUndo()" @click="viewer?.undo()">Undo</button>
		<button @click="viewer?.addSlide()">Add Slide</button>
	</div>
</template>

getContent vs @content-change

getContent() is a pull API: serialize on demand, e.g. when a Save button is clicked. @content-change is a push event that fires with fresh bytes as the document changes. Use whichever fits your save model; they return equivalent Uint8Array content.

Released under the Apache-2.0 License.