Skip to content

DocumentFilters::Initialize method

The Initialize method initializes and authorizes the Document Filters API. It is the first method that your application must call.

Prototype

void Initialize(string license, string install_dir)
void Initialize(string license, string install_dir) throws IGRException;
def Initialize(self, license: string, install_dir: string) -> void
void Initialize(const std::wstring& license, const std::wstring& install_dir)

Parameters

license: string : Document Filters License Code.

install_dir: string : Path to Document Filters resources, such as configuration files and fonts.

Sample Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
using Hyland.DocumentFilters;

try
{
    // Create a DocumentFilters object
    DocumentFilters df = new DocumentFilters();

    // Initialize the DocumentFilters object with license and path
    string license = "your_license_key";
    string resource_path = "";
    df.Initialize(license, resource_path);

    // Your code using the DocumentFilters object goes here
}
catch (Exception ex)
{
    Console.WriteLine("Error: " + ex.Message);
}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
import com.perceptive.documentfilters.*;

public class Example {
    public static void main(String[] args) {
        try {
            // Create a DocumentFilters object
            DocumentFilters df = new DocumentFilters();

            // Initialize the DocumentFilters object with license and path
            String license = "your_license_key";
            String resource_path = "";
            df.Initialize(license, path);

            // Your code using the DocumentFilters object goes here

        } catch (IGRException ex) {
            System.out.println("Error: " + ex.getMessage());
        }
    }
}
1
2
3
4
5
6
7
8
9
from DocumentFilters import DocumentFilters

# Create a DocumentFilters object
df = DocumentFilters()

# Initialize the DocumentFilters object with license and path
license = "your_license_key"
resource_path = "path/to/your/resources"
df.Initialize(license, resource_path)
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <iostream>
#include <string>
#include "DocumentFiltersObjects.h"

int main() {
    try {
        // Create a DocumentFilters object
        Hyland::DocFilters::DocumentFilters df;

        // Initialize the DocumentFilters object with license and path
        std::wstring license = L"your_license_key";
        std::wstring resource_path = L"";
        df.Initialize(license, resource_path);

        // Your code using the DocumentFilters object goes here

    } catch (const std::exception& ex) {
        std::cerr << "Error: " << ex.what() << std::endl;
    }
    return 0;
}
C#

Additional Information

.NET Native Library path - ISYSdf11.dll will be loaded by P/Invoke through the [DllImport] attribute and must be either in same folder as the currently executing Assembly or found by Default Probing rules for Unmanaged (native) libraries

Java Native Library path - ISYS11df.(dll/so/dylib) will be loaded by a call to System.loadLibrary("ISYS11df") See System.LoadLibrary for more information

See Also