A script-enabled browser is required for this page to function properly.

TOOL_RES.RFHANDLE built-in type

This type specifies a handle to a file.

Syntax


TYPE TOOL_RES.RFHANDLE;

Example


 /*
  ** This examples uses TOOL_RES.RFHANDLE
  */
  PRODEDURE res_test IS
    /* Specify the handle 'resfileh'. */
     resfileh TOOL_RES.RFHANDLE;
   BEGIN
     /* Assign handle to a resource file */ 
      resfileh := TOOL_RES.RFOPEN('C:\test.res');
     ...
  END;

See also

About the TOOL_RES built-in package

TOOL_RES built-in package