FilterAttributes Enumeration |
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum FilterAttributes
<FlagsAttribute>
Public Enumeration FilterAttributes
Members
| Member name | Value | Description |
---|
| Static | 1 | This view consists of a set of keys (vs. a query filter). |
| StaticFilter | 2 | This view consists of a SQL IN clause filter with a set of keys. |
| Temp | 16 | This view is temporary and can be deleted any time after its EndDate. |
| Hidden | 32 |
This view is not to be directly selectable in a UI.
See UsageSpecific regarding filters that should be visible only in certain contexts.
|
| Sorted | 64 | This view contains a sort clause. |
| UsageSpecific | 128 |
This filter is specific to the Usage. As such, the filter should generally
not be visible in the UI except where that Usage applies. This provides a sort of limited
Hidden capability where such filters are visible only in certain contexts.
|
| Removeable | 256 |
This filter may be removed by the user.
This attribute is intended for use with Registered filter navigation,
see RegisterReqFilter(IAppContext, String, FilterAttributes, String, String, String, NullableDateTime, String).
|
| KeyString | 4096 | The key for this item is a string (vs. numeric or guid). |
| KeyNumeric | 8192 | The key for this item is numeric (vs. string or guid). |
| KeyGuid | 16384 | The key for this item is a GUID (vs. string or numeric). |
| DeleteAfterUse | 1048576 | The consumer of the filter may delete the filter when finished with it. |
| NoModule | 2097152 | The filter does not specify a particular module/MOP. |
| Registered | 4194304 | The filter is generated as a registered filter. |
| FutureEval | 8388608 |
This filter is intended for future evaluation and has been rendered such that it may include embedded functions.
Generally this is because evaluation is time-dependent. For example, "dt=Today" is rendered as "!fnTimePeriod(dt, ::Today::)".
|
| SharedInTenant | 16777216 | This filter should be shared across all users for this tenant. |
See Also