[]
        
(Showing Draft Content)

Interops.Angular.GcShortcutInfo

GcShortcutInfo クラス

コンポーネントのセレクタ gc-shortcut-info gc-shortcutの入れ子として使用されます。

例:

<gc-shortcut [blockMessage]='true'>
    <gc-shortcut-info [shortcutKey]='67' action='clear'></gc-shortcut-info> // press 'C'
    <gc-shortcut-info [shortcutKey]='80' action='previouscontrol' target='#textbox'></gc-shortcut-info> // press 'P', target can be the css selector.
</gc-shortcut>

階層

  • GcShortcutInfo

プロパティ

action

action: Function | GcShortcutAction

実行するアクション。

alt

alt: boolean

Altキーと組み合わせるかどうか。初期値はfalse。

blockMessage

blockMessage: boolean

ショートカットキー押下の通知をブロックするかどうかを設定します。初期値はfalse。

ctrl

ctrl: boolean

Ctrlキーと組み合わせるかどうか。初期値はfalse。

shift

shift: boolean

Shiftキーと組み合わせるかどうか。初期値はfalse。

shortcutKey

shortcutKey: GcShortcutKey

対象のキー

target

target: string

指定されたキーが押されたときにアクションを実行する対象(HTML要素やInputManコントロール)。