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 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
1 2 3 4 5 6 7 8 9 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
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