Set this parameter to true if you want to enable the adaptive file caching mechanism. Otherwise set it to false. The default value is true.
Example





In This Topic
GdPicture14 Namespace / GdPictureDocumentUtilities Class / SetAdaptiveFileCachingMechanism Method

SetAdaptiveFileCachingMechanism Method (GdPictureDocumentUtilities)

In This Topic
Enables or disables the usage of the adaptive file caching mechanism integrated into the toolkit.

Enabling this mechanism can be particularly useful when manipulating, cloning or merging large documents. The feature is available in both 32-bit and 64-bit mode of the toolkit.

Syntax
'Declaration
 
Public Shared Sub SetAdaptiveFileCachingMechanism( _
   ByVal Enabled As Boolean _
) 
public static void SetAdaptiveFileCachingMechanism( 
   bool Enabled
)
public procedure SetAdaptiveFileCachingMechanism( 
    Enabled: Boolean
); static; 
public static function SetAdaptiveFileCachingMechanism( 
   Enabled : boolean
);
public: static void SetAdaptiveFileCachingMechanism( 
   bool Enabled
) 
public:
static void SetAdaptiveFileCachingMechanism( 
   bool Enabled
) 

Parameters

Enabled
Set this parameter to true if you want to enable the adaptive file caching mechanism. Otherwise set it to false. The default value is true.
Example
How to disable the adaptive file caching mechanism.
GdPictureDocumentUtilities.SetAdaptiveFileCachingMechanism(False)
GdPictureDocumentUtilities.SetAdaptiveFileCachingMechanism(false);
See Also