[This is preliminary documentation and is subject to change.]

Contains instructions for Total Commander how to handle extracted bitmap

Namespace:  Tools.TotalCommanderT
Assembly:  Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.2.0

Syntax

C#
public enum BitmapHandling
Visual Basic (Declaration)
Public Enumeration BitmapHandling
Visual C++
public enum class BitmapHandling
J#
public enum BitmapHandling
JScript
public enum BitmapHandling

Members

Member nameDescription
Cache
This value must be ADDED to one of the above values if the caller should cache the image. Do NOT add this image if you will cache the image yourself!
ExtractAndDelete
Tells the caller to extract the image by itself, and then delete the temporary image file. The full local path to the temporary image file needs to be returned in RemoteName parameter. The returned bitmap name must not be longer than MaxPath. In this case, the plugin downloads the file to TEMP and then asks TC to extract the image.
ExtractYourself
Tells the caller to extract the image by itself. The full local path to the file needs to be returned in RemoteName parameter. The returned bitmap name must not be longer than MaxPath.
Extracted
The image was extracted and is returned in ReturnedBitmap parameter
None
There is no preview bitmap.

See Also