Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum LabelFlags
<FlagsAttribute>
Public Enumeration LabelFlags
Members
| Member name | Value | Description |
---|
| NoSuffix | 1 | Do not append a suffix (e.g. ":") to the text. |
| EllipsisSuffix | 2 | Append an ellipsis ("...") to the text. |
| AllCellTypes | 4 | Return a label even for CellTypes that normally do not use a label (e.g. CheckBox). |
| IgnoreVisibility | 8 | Return a label even if field is not visible. |
| NoAccelerator | 16 | If present, remove any accelerator (hot key) from the text. |
| ForFilter | 32 | Create a label appropriate for filtering. |
| ForSimpleDetail | 64 |
Label is for use in a SimpleDetail layout.
This affects whether or not a label will be created for a particular field.
|
| ForSummary | 128 | Create a label appropriate for use in a summary. |
| Final | 256 | The label text is being requested during PreRender. |
| TextOnly | 17 | Return basic text only. |
| ForGrouping | 512 | Create a label for grouping purposes |
| NoHtmlEscape | 1024 | Do not escape the label for HTML. |
| ForList | 2048 | This caption is for the list. |
| IgnoreNoLabel | 4096 | Return a label even if field would not normally get a label (e.g. NoLabel is set). |
| BootstrapForm | 8192 | Create a label for use in a Bootstrap form. |
| ForLabelContent | 16384 |
Create a label for use in an HTML label tag favoring any LabelCaption HTML.
HTML content is assumed.
|
See Also