当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS Expand.closeOnEsc用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/widgets/Expand"], (Expand) => { /* code goes here */ });

ESM: import Expand from "@arcgis/core/widgets/Expand";

类: esri/widgets/Expand

继承: Expand > Widget > Accessor

自从:用于 JavaScript 4.3 的 ArcGIS API

用法说明

Expand.closeOnEsc函数(或属性)的定义如下:

closeOnEsc Boolean | Function


当为 true 时,当键盘焦点位于其内容内时,按下 Escape 键后,Expand 小部件将关闭。此属性也可以设置为返回布尔值的函数,允许更多自定义何时允许从 esc 键关闭 Expand 小部件。

默认值:true

例子:

let expand = new Expand({
   view: view,
   content: searchWidget,
   // widget will not be able to be closed from the ESC key
   closeOnEsc: false
});
let expand = new Expand({
   view: view,
   content: searchWidget,
   // widget will close on ESC when the search widget has no active menu
   closeOnEsc: function() {
     return searchWidget.activeMenu === "none"
   }
});

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 Expand.closeOnEsc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。