Name | Value | Description | |||
exModifiedToday | 0 |
Retrieves or sets a value that indicates the caption being displayed on the 'Modified' column if the file was changed today.
By default, the Option( exModifiedToday ) property is "today".
String expression. | |||
exModifiedDaysAgo | 1 |
Retrieves or sets a value that indicates the caption being displayed on the 'Modified' column when the file was changed n-th days ago.
By default, the Option(
exModifiedDaysAgo ) property is "%i day(s) ago". The string may
contain a single %i expression that indicates the number of days that should be
displayed. For instance, in German language it would be better if we could
display "vor 10 Tagen" instead "10 day(s) ago", and so the
Option( exModifiedDaysAgo ) property should be "vor %i Tagen".
String expression. | |||
exModifiedDateFormat | 2 |
Retrieves or sets a value that indicates the format of the date being displayed on the 'Modified' column.
By default, the Option ( exModifiedDateFormat ) property is "M/d/yyyy ", it means
that the date is being displayed as "10/13/2004". The
exModifiedDateFormat option may include the following predefined strings:
For instance, use the format "ddd, MMM dd yy" to get the date displayed as "Wed, Aug 31 94". String expression. | |||
exModifiedTimeFormat | 3 |
Retrieves or sets a value that indicates the format of the time being displayed on the 'Modified' column.
By default, the Option( exModifiedTimeFormat ) property is "hh:mm:ss tt",
it means that the time is displayed as "03:45:12 PM". The
exModifiedTimeFormat may include the following predefined strings:
String expression. | |||
exHideFileExtensionsForKnownFileTypes | 4 |
Hides or shows the three-letter file-name extensions for certain files, reducing clutter in folder windows.
By default, the Option(
exHideFileExtensionsForKnownFileTypes ) property is False. If the Option(
exHideFileExtensionsForKnownFileTypes ) property is False, the control shows the
extensions for any file. If the Option(
exHideFileExtensionsForKnownFileTypes ) property is True, the control displays
the file name according to the Windows Explorer option "Hide File
Extensions For Known File Types". For instance, if the Windows Explorer
option "Hide File Extensions For Known File Types" is checked, the
control control hides file extensions for known file types, else the file
extension is visible.
Boolean expression | |||
exSizeFormat | 5 |
Specifies the format to display the Size column. You can use the
Option(exSizeFormat) property to indicate whether the Size column should
displays the size of files in GB (GigaBytes), MB (MegaBytes), KB (KiloBytes) or
Bytes. The Option(exSizeFormat) property can be a BIT combination of the
following flags:
For instance, if the Option(exSizeFormat) is 1 + 2 + 4 + 8 (=15), the size column may display Bytes for files with the size less than 1 KB, Kilo-Bytes for files with the size less than 1 MB, Mega-Bytes for files with the size less than 1 GB, and GB files. In other words a file of 100 Bytes, will display 100 Bytes, or a file of 29,038,225,408 Bytes, will display 27.04 GB. By default the Option(exSizeFormat) is 2 ( KB, in other words the size column is displayed in KB ). Long expression. |