Skip to content

ChartKeyboardEventArgs

Summary

Provides data for chart keyboard related events and callbacks

Signature

1
public class ChartKeyboardEventArgs

Namespace

cAlgo.API

Properties

Chart

Summary

The chart that the event/callback occurred

Signature

1
public Chart Chart {get;}

Return Value

Chart

Key

Summary

Keyboard key

Signature

1
public Key Key {get;}

Return Value

Key

Modifiers

Summary

Modifiers key that was used with the Key

Signature

1
public ModifierKeys Modifiers {get;}

Return Value

ModifierKeys

CtrlKey

Summary

True if Ctrl key was pressed otherwise False

Signature

1
public bool CtrlKey {get;}

Return Value

bool

ShiftKey

Summary

True if Shift key was pressed otherwise False

Signature

1
public bool ShiftKey {get;}

Return Value

bool

AltKey

Summary

True if Alt key was pressed otherwise False

Signature

1
public bool AltKey {get;}

Return Value

bool