[This is preliminary documentation and is subject to change.]
Types of content fields
Namespace: Tools.TotalCommanderTAssembly: 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 name | Value | Description | |
|---|---|---|---|
| Boolean | 6 | A true/false value, type Boolean | |
| Double | 3 | A double precision floating point number, type Double (Total Commander calls this float) | |
| DateAndTime | 10 | A timestamp of type . The time MUST be relative to universal time (Greenwich mean time) as returned by the file system, not local time! | |
| FullText | 9 | A 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! | |
| Time | 5 | A time value (hour, minute, second). Date and time are in local time. Type TimeSpan | |
| Integer64 | 2 | A 64-bit signed number, e.g. for file sizes, type Int64 (Total Commander calls this numeric_64) | |
| Integer32 | 1 | A 32-bit signed number, type Int32 (Total Commander calls this numeric_32) | |
| NoMoreFields | 0 | The field index is beyond the last available field. This is not actual field type. This value denotes that the field does not exist. | |
| String | 8 | A text string, type String | |
| Enum | 7 | A value allowing a limited number of choices. Use the Units field to return all possible values. (Total Commander calls this multiplechoice) | |
| Date | 4 | A date value (year, month, day; time part ignored), type DateTime | |
| IsFlags | Gets value indicating if given value is of enum type which has FlagsAttribute applied | ||
| GetName | Gets name of given enumeration value | ||
| GetConstant | Gets constant field that represents given enum value | ||
| GetValue | Gets value of enum in its unedlying type | ||
| IsDefined | Gets 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
Version History
1.5.3
- This enumeration in new in version 1.5.3