ComPDF React Native - v3.0.0
    Preparing search index...

    Interface CPDFReaderViewProps

    Props used to configure and observe the native PDF reader view.

    interface CPDFReaderViewProps {
        configuration: string;
        document: string;
        password?: string;
        pageIndex?: number;
        onPageChanged?: (pageIndex: number) => void;
        onSaveDocument?: () => void;
        onPageEditDialogBackPress?: () => void;
        onFullScreenChanged?: (isFullScreen: boolean) => void;
        onTapMainDocArea?: () => void;
        onIOSClickBackPressed?: () => void;
        onChange?: (event: any) => void;
        onViewCreated?: () => void;
        onCustomToolbarItemTapped?: (identifier: string) => void;
        onCustomContextMenuItemTapped?: (identifier: string, event: any) => void;
        onSearchBackButtonTapped?: () => void;
        onAddWatermarkDialogDismissed?: () => void;
        onAnnotationStyleDialogDismissed?: (
            event: CPDFAnnotationStyleDialogDismissedEvent,
        ) => void;
        onFormStyleDialogDismissed?: (
            event: CPDFFormStyleDialogDismissedEvent,
        ) => void;
        onContentEditorStyleDialogDismissed?: (
            event: CPDFContentEditorStyleDialogDismissedEvent,
        ) => void;
        onAnnotationCreationPrepared?: (
            type: CPDFAnnotationType,
            event: CPDFAnnotation | null,
        ) => void;
        onInterceptAnnotationActionCallback?: (annotation: CPDFAnnotation) => void;
        onInterceptWidgetActionCallback?: (widget: CPDFWidget) => void;
        style?: any;
    }
    Index

    Properties

    configuration: string
    document: string
    password?: string
    pageIndex?: number
    onPageChanged?: (pageIndex: number) => void
    onSaveDocument?: () => void
    onPageEditDialogBackPress?: () => void
    onFullScreenChanged?: (isFullScreen: boolean) => void
    onTapMainDocArea?: () => void
    onIOSClickBackPressed?: () => void
    onChange?: (event: any) => void
    onViewCreated?: () => void
    onCustomToolbarItemTapped?: (identifier: string) => void
    onCustomContextMenuItemTapped?: (identifier: string, event: any) => void
    onSearchBackButtonTapped?: () => void
    onAddWatermarkDialogDismissed?: () => void
    onAnnotationStyleDialogDismissed?: (
        event: CPDFAnnotationStyleDialogDismissedEvent,
    ) => void
    onFormStyleDialogDismissed?: (event: CPDFFormStyleDialogDismissedEvent) => void
    onContentEditorStyleDialogDismissed?: (
        event: CPDFContentEditorStyleDialogDismissedEvent,
    ) => void
    onAnnotationCreationPrepared?: (
        type: CPDFAnnotationType,
        event: CPDFAnnotation | null,
    ) => void
    onInterceptAnnotationActionCallback?: (annotation: CPDFAnnotation) => void
    onInterceptWidgetActionCallback?: (widget: CPDFWidget) => void
    style?: any