Option flags for use with
GetValue(GetValFlags, Object).
In general these flags may be combined except where more than one of the flags uses
the
param parameter.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum GetValFlags
<FlagsAttribute>
Public Enumeration GetValFlags
Members
| Member name | Value | Description |
---|
| DisplayText | 1 |
Get the display text (vs. the underlying raw data). The display text is generated by
applying any picklist and formatting in order to convert the raw value into a string
appropriate for presentation in the UI. When this option is used, DispTextFlags should
be provided in the param parameter.
|
| ToTimezone | 1048576 |
The returned value should be a date/time value in the timezone provided in the param parameter.
The timezone may be specied using either a TimeZone object, or a timezone key (ID)
such as an integer zero, string "0" (for UTC), or string "." (for user local).
When combined with ToDisplayTimezone behaved exactly as ToDisplayTimezone.
The value will be converted from the field's Value assume to be in its storage timezone.
|
| ToDisplayTimezone | 2097152 |
The returned valued should be a date/time value in the field's display timezone (which is typically
either the same as its storage timezone if no timezone spec is provided on the field, or the user's
local timezone). May be combined with ToTimezone, which does not affect the behavior
of this flag. Unlike ToTimezone, this flag implies the timezone and so the param
parameter is not used.
|
| StandardString | 2 |
The returned value should be converted to a string in a standard, unlocalized form.
For example, a date will be returned in the form "yyyy-MM-dd HH:mm:ss", e.g.
"2006-10-02 14:30:00" for October 2, 2006 at 2:30 pm.
The param parameter is not used.
|
| DefaultProvided | 4 |
If the field's value is null, use the default value provided in the param parameter.
|
See Also