EncDisplayCategories QML Type
An Electronic Navigation Chart (ENC) display categories object. More...
Import Statement: | import Esri.ArcGISRuntime 100.10 |
Since: | Esri.ArcGISRuntime 100.2 |
Inherits: |
Properties
- displayBase : bool
- otherDisplay : bool
- standardDisplay : bool
Signals
Detailed Description
// create EncExchangeSet using paths
EncExchangeSet {
id: encExchangeSet
paths: paths
}
function displayNames() {
// get the list of EncDataset
var encDatasets = encExchangeSet.datasets;
// display the names of EncDataset
for (var i = 0; i < encDatasets.length; ++i) {
console.log(encDatasets[i].name);
}
}
Note: You cannot declare or create a component of this type in QML code. Use EncMarinerSettings to get an instance of this object.
See also EncLayer.
Property Documentation
A value indicating whether to display the display the S-52 "displaybase" category.
A value indicating whether to display the S-52 "other" category.
Note: The "other" category contains all objects that are not enabled by default in "Standard Display".
A value indicating whether to display the S-52 "standard" category.
Note: Once an object has been added to or removed from display, the display is no longer showing the "Standard Display".
Signal Documentation
Emitted when the displayBase property changes.
Note: The corresponding handler is onDisplayBaseChanged
.
Emitted when the otherDisplay property changes.
Note: The corresponding handler is onOtherDisplayChanged
.
Emitted when the standardDisplay property changes.
Note: The corresponding handler is onStandardDisplayChanged
.