[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.3.38916 (1.5.3.38916)

Syntax

C#
public enum BitmapHandling
Visual Basic
Public Enumeration BitmapHandling
Visual C++
public enum class BitmapHandling
F#
type BitmapHandling
JScript
public enum BitmapHandling

Members

Member nameValueDescription
Cache256This 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!
ExtractAndDelete3Tells 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.
ExtractYourself2Tells 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.
Extracted1The image was extracted and is returned in ReturnedBitmap parameter
None0There is no preview bitmap.
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

See Also