The new path of the required cache folder.
Example





In This Topic

SetCacheFolder Method (GdPictureDocumentUtilities)

In This Topic
Sets the specified folder, where temporary files generated by the toolkit are stored during the whole application lifecycle. The default value is the path of the current user's temporary folder.
Syntax
'Declaration
 
Public Shared Sub SetCacheFolder( _
   ByVal CacheFolder As String _
) 
public static void SetCacheFolder( 
   string CacheFolder
)
public procedure SetCacheFolder( 
    CacheFolder: String
); static; 
public static function SetCacheFolder( 
   CacheFolder : String
);
public: static void SetCacheFolder( 
   string* CacheFolder
) 
public:
static void SetCacheFolder( 
   String^ CacheFolder
) 

Parameters

CacheFolder
The new path of the required cache folder.
Example
How to set a custom cache folder.
GdPictureDocumentUtilities.SetCacheFolder("d:\\mycache")
GdPictureDocumentUtilities.SetCacheFolder("d:\\mycache");
See Also