--- title: Notification.maxActions slug: Web/API/Notification/maxActions tags: - API - Notification - Notifications - Notifications API - Property - Reference - actions - プロパティ - 通知 translation_of: Web/API/Notification/maxActions ---

{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}

maxActions は {{domxref("Notification")}} インターフェイスの属性で、端末とユーザーエージェントが対応するアクションの最大数を返します。実質的には、これはユーザーエージェントが尊重する {{domxref("Notification.actions")}} 配列の最大数です。

構文

Notification.maxActions

整数の {{JSxRef("Number")}} で、ユーザ-エージェントと端末がユーザーに提示することができるできる通知アクションの最大数を示します。

以下のスニペットは、対応するアクションの最大数をログ出力します。

const maxActions = Notification.maxActions;
console.log('This device can display at most ' + maxActions + ' actions on each notification.');

仕様書

仕様書 状態 備考
{{SpecName('Web Notifications','#dom-notification-actions','actions')}} {{Spec2('Web Notifications')}} Living standard

ブラウザーの互換性

{{Compat("api.Notification.actions")}}

関連情報