hmFree_ANALYZE_CFBF

hmFree_ANALYZE_CFBF(Path;namesArray;contentArray)

Parameter          Type             Description
Path               Text         ->  Destination path
namesArray         ARRAY TEXT   <-  Names array
contentArray       ARRAY BLOB   <-  Content array

Description

The command hmFree_ANALYZE_CFBF analyzes the content of a .msg-file. Pass the path to the msg-file into the parameter Path.
In namesArray you will get all internal property names of the file. In contentArray you will get the raw content of each property. Both arrays having always the same size.

This command works under Windows only!

Example

The following example analyzes a msg-file:

ARRAY TEXT($tt_names;0)
ARRAY BLOB($tx_content;0)

hmFree_ANALYZE_CFBF ($vt_path;$tt_names;$tx_content)