Table of contents

DSDocumentNormalizerModule

The DSDocumentNormalizerModule class defines general functions of the document normalizer module.

Definition

Assembly: DynamsoftDocumentNormalizer.xcframework

  • Objective-C
  • Swift
  1. NS_ASSUME_NONNULL_BEGIN
    @interface DSDocumentNormalizerModule : NSObject
    
  2. class DocumentNormalizerModule : NSObject
    

Methods

Method Description
getVersion Get the version of Dynamsoft Document Normalizer.

getVersion

Get the version of Dynamsoft Document Normalizer.

  • Objective-C
  • Swift
  1. + (NSString *)getVersion;
    
  2. class func getVersion() -> String
    

Return Value

The version of Dynamsoft Document Normalizer.

Code Snippet

  • Objective-C
  • Swift
  1. NSString *version = [DSDocumentNormalizerModule getVersion];
    
  2. let version = DocumentNormalizerModule.getVersion()
    

Is this page helpful?

YesYes NoNo

In this article: