PSPDFSubmitFormActionFormat

Objective-C

enum PSPDFSubmitFormActionFormat : NSUInteger {}

Swift

@frozen enum SubmitFormActionFormat : UInt, @unchecked Sendable

The possible formats a form submission can be encoded in.

  • The form will be submitted in Forms Data Format.

    Declaration

    Objective-C

    PSPDFSubmitFormActionFormatFDF

    Swift

    case FDF = 0
  • The form will be submitted in XML Forms Data Format.

    Declaration

    Objective-C

    PSPDFSubmitFormActionFormatXFDF

    Swift

    case XFDF = 1
  • The form will be submitted in Hypertext Markup Language.

    Declaration

    Objective-C

    PSPDFSubmitFormActionFormatHTML

    Swift

    case HTML = 2
  • The form will be submitted in Portable Document Format.

    Declaration

    Objective-C

    PSPDFSubmitFormActionFormatPDF

    Swift

    case PDF = 3