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

Types of content fields

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

Syntax

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

Members

Member nameValueDescription
Boolean6A true/false value, type Boolean
Double3A double precision floating point number, type Double (Total Commander calls this float)
DateAndTime10A timestamp of type . The time MUST be relative to universal time (Greenwich mean time) as returned by the file system, not local time!
FullText9A full text (multiple text strings), only used for searching. Can be used e.g. for searching in the text portion of binary files, where the plugin makes the necessary translations. All fields of this type MUST be placed at the END of the field list, otherwise you will get errors in Total Commander!
Time5A time value (hour, minute, second). Date and time are in local time. Type TimeSpan
Integer642A 64-bit signed number, e.g. for file sizes, type Int64 (Total Commander calls this numeric_64)
Integer321A 32-bit signed number, type Int32 (Total Commander calls this numeric_32)
NoMoreFields0The field index is beyond the last available field. This is not actual field type. This value denotes that the field does not exist.
String8A text string, type String
Enum7A value allowing a limited number of choices. Use the Units field to return all possible values. (Total Commander calls this multiplechoice)
Date4A date value (year, month, day; time part ignored), type DateTime
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

Remarks

Content fields are custom columns in details view provided by plugin

See Also

Collapse/expand Version History

1.5.3

  • This enumeration in new in version 1.5.3