[]
        
(Showing Draft Content)

Interops.Vue.GcShortcutInfo

GcShortcutInfo クラス

コンポーネントのセレクタ GcShortcutInfoComponent GcShortcutComponentの入れ子として使用されます。 例:

<GcShortcutComponent [block-message]='true'>
    <GcShortcutInfoComponent [shortcut-key]='67' action='clear'></GcShortcutInfoComponent> // press 'C'
    <GcShortcutInfoComponent [shortcut-key]='80' action='previouscontrol' target='#textbox'></GcShortcutInfoComponent> // press 'P', target can be the css selector.
</GcShortcutComponent>

階層

  • GcShortcutInfo

プロパティ

action

action: Function | GcShortcutAction

実行するアクション。

alt

alt: boolean

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

block-message

block-message: boolean

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

ctrl

ctrl: boolean

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

shift

shift: boolean

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

shortcut-key

shortcut-key: GcShortcutKey

対象のキー

target

target: string

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