A representation of a GeoElement's attribute field in a Popup. More...
Import Statement: | import Esri.ArcGISRuntime 100.15 |
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
[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;
The format used to display the field.
See also Enums.PopupStringFieldOption.
Signal Documentation
Emitted when the editable property changes.
Note: The corresponding handler is onEditableChanged
.
Emitted when the fieldName property changes.
Note: The corresponding handler is onFieldNameChanged
.
Emitted when the format property changes.
Note: The corresponding handler is onFormatChanged
.
Emitted when the label property changes.
Note: The corresponding handler is onLabelChanged
.
Emitted when the stringFieldOption property changes.
Note: The corresponding handler is onStringFieldOptionChanged
.
Emitted when the tooltip property changes.
Note: The corresponding handler is onTooltipChanged
.
Emitted when the visible property changes.
Note: The corresponding handler is onVisibleChanged
.