com.groupdocs.signature.domain.documentpreview

Interface IDocumentInfo

  • All Known Implementing Classes:
    DocumentInfo


    public interface IDocumentInfo

    Defines document description properties.

    • Method Detail

      • getFileType

        FileType getFileType()

        File format type

      • getFormFields

        List<FormFieldSignature> getFormFields()

        Collection of all existing supported Form Fields in the document. This property is supported only for Pdf and Word Processing document types.

      • getMaxPageHeight

        int getMaxPageHeight()

        Specifies max page height.

      • getPageCount

        int getPageCount()

        Document pages count.

      • getPages

        List<PageInfo> getPages()

        Collection of document pages descriptions.

      • getProcessLogs

        List<ProcessLog> getProcessLogs()

        Collection of document history process logs.

      • getSize

        long getSize()

        Document size in bytes.

      • getWidthForMaxHeight

        int getWidthForMaxHeight()

        Specifies width for max page height.

      • setFileType

        void setFileType(FileType value)

        File format type

      • setMaxPageHeight

        void setMaxPageHeight(int value)

        Specifies max page height.

      • setPageCount

        void setPageCount(int value)

        Document pages count.

      • setPages

        void setPages(List<PageInfo> value)

        Collection of document pages descriptions.

      • setSize

        void setSize(long value)

        Document size in bytes.

      • setWidthForMaxHeight

        void setWidthForMaxHeight(int value)

        Specifies width for max page height.