PROPDESC_FORMAT_FLAGS Enumeration |
Namespace:
ShellBoost.Core.WindowsPropertySystem
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum PROPDESC_FORMAT_FLAGS
Members
| Member name | Value | Description |
---|
| PDFF_DEFAULT | 0 |
Use the format settings specified in the property's .propdesc file.
|
| PDFF_PREFIXNAME | 1 |
Precede the value with the property's display name. If the hideLabelPrefix attribute of the labelInfo element in the property's .propinfo file is set to true, then this flag is ignored.
|
| PDFF_FILENAME | 2 |
Treat the string as a file name.
|
| PDFF_ALWAYSKB | 4 |
Byte sizes are always displayed in KB, regardless of size. This enables clean alignment of the values in the column. This flag applies only to properties that have been declared as type Integer in the displayType attribute of the displayInfo element in the property's .propinfo file. This flag overrides the numberFormat setting.
|
| PDFF_RESERVED_RIGHTTOLEFT | 8 |
Reserved.
|
| PDFF_SHORTTIME | 16 |
Display time as "hh:mm am/pm".
|
| PDFF_LONGTIME | 32 |
Display time as "hh:mm:ss am/pm".
|
| PDFF_HIDETIME | 64 |
Hide the time portion of datetime.
|
| PDFF_SHORTDATE | 128 |
Display date as "MM/DD/YY". For example, "03/21/04".
|
| PDFF_LONGDATE | 256 |
Display date as "DayOfWeek, Month day, year". For example, "Monday, March 21, 2009".
|
| PDFF_HIDEDATE | 512 |
Hide the date portion of datetime.
|
| PDFF_RELATIVEDATE | 1024 |
Use friendly date descriptions. For example, "Yesterday".
|
| PDFF_USEEDITINVITATION | 2048 |
Return the invitation text if formatting failed or the value was empty. Invitation text is text displayed in a text box as a cue for the user, such as "Enter your name". Formatting can fail if the data entered is not of an expected type, such as when alpha characters have been entered in a phone-number field.
|
| PDFF_READONLY | 4096 |
If this flag is used, the PDFF_USEEDITINVITATION flag must also be specified. When the formatting flags are PDFF_READONLY | PDFF_USEEDITINVITATION and the algorithm would have shown invitation text, a string is returned that indicates the value is "Unknown" instead of returning the invitation text.
|
| PDFF_NOAUTOREADINGORDER | 8192 |
Do not detect reading order automatically. Useful when converting to ANSI to omit the Unicode reading order characters. However, reading order characters for some values are still returned.
|
See Also