PopupField QML Type
A representation of a GeoElement's attribute field in a Popup. More...
Import Statement: | import Esri.ArcGISRuntime |
Since: | Esri.ArcGISRuntime 100.0 |
Inherits: |
Properties
- editable : bool
- fieldName : string
- format : PopupFieldFormat
- label : string
- stringFieldOption : Enums.PopupStringFieldOption
- tooltip : string
- visible : bool
Signals
- editableChanged()
- fieldNameChanged()
- formatChanged()
- labelChanged()
- stringFieldOptionChanged()
- tooltipChanged()
- visibleChanged()
Detailed Description
This QML type supports the following default properties. A default property may be declared inside another declared object without being assigned explicitly to a property.
Type | Default Property |
---|---|
PopupFieldFormat | format |
Property Documentation
editable : bool |
Whether the field is editable.
fieldName : string |
The field name.
[default] format : PopupFieldFormat |
The field format.
Chaining properties will not work with this property. For example, the following will not work:
PopupField.format.useThousandsSeparator = true;
Rather, get the existing format, make changes, and set it back on the PopupField:
const format = PopupField.format; format.useThousandsSeparator = true; PopupField.format = format;
label : string |
The field label.
stringFieldOption : Enums.PopupStringFieldOption |
The format used to display the field.
See also Enums.PopupStringFieldOption.
tooltip : string |
A string providing an editing hint for editors of the field.
visible : bool |
Whether the field is visible.
Signal Documentation
editableChanged() |
Emitted when the editable property changes.
Note: The corresponding handler is onEditableChanged
.
fieldNameChanged() |
Emitted when the fieldName property changes.
Note: The corresponding handler is onFieldNameChanged
.
formatChanged() |
Emitted when the format property changes.
Note: The corresponding handler is onFormatChanged
.
labelChanged() |
Emitted when the label property changes.
Note: The corresponding handler is onLabelChanged
.
stringFieldOptionChanged() |
Emitted when the stringFieldOption property changes.
Note: The corresponding handler is onStringFieldOptionChanged
.
tooltipChanged() |
Emitted when the tooltip property changes.
Note: The corresponding handler is onTooltipChanged
.
visibleChanged() |
Emitted when the visible property changes.
Note: The corresponding handler is onVisibleChanged
.