Block selection Ctrl+Alt

Is possible to activate block selection feature with Ctrol+Alt combination?

I know the standard combination is Shift+Alt, but I am used to Vs Code that uses Ctrol+Alt....

Is possible to customize that feature?
Hello Pau,
You should add additional key mapping like this:
Alternet.Editor.EventHandlers handlers = syntaxEdit1.KeyList.Handlers as Alternet.Editor.EventHandlers;
syntaxEdit1.KeyList.Add(Keys.Up | Keys.Control | Keys.Alt, handlers.SelectLineUpEvent, Alternet.Editor.SelectionType.Block);
syntaxEdit1.KeyList.Add(Keys.Down | Keys.Control | Keys.Alt, handlers.SelectLineDownEvent, Alternet.Editor.SelectionType.Block);
syntaxEdit1.KeyList.Add(Keys.Left | Keys.Control | Keys.Alt, handlers.SelectCharLeftEvent, Alternet.Editor.SelectionType.Block);
syntaxEdit1.KeyList.Add(Keys.Right | Keys.Control | Keys.Alt, handlers.SelectCharRightEvent, Alternet.Editor.SelectionType.Block);
syntaxEdit1.KeyList.Add(Keys.Prior | Keys.Control | Keys.Alt, handlers.SelectPageUpEvent, Alternet.Editor.SelectionType.Block);
syntaxEdit1.KeyList.Add(Keys.Next | Keys.Control | Keys.Alt, handlers.SelectPageDownEvent, Alternet.Editor.SelectionType.Block);
syntaxEdit1.KeyList.Add(Keys.Home | Keys.Control | Keys.Alt, handlers.SelectLineBeginEvent, Alternet.Editor.SelectionType.Block);
syntaxEdit1.KeyList.Add(Keys.End | Keys.Control | Keys.Alt, handlers.SelectLineEndEvent, Alternet.Editor.SelectionType.Block);
Regards,
Andrew
Thank you. It worked great.
I just had to modify a namespace in your code:

Private Sub AddKeyMappingsForMulticursorOnControlAlt()
Dim handlers As Alternet.Editor.Wpf.EventHandlers = TryCast(Me.KeyList.Handlers, Alternet.Editor.Wpf.EventHandlers)
Me.KeyList.Add(Keys.Up Or Keys.Control Or Keys.Alt, handlers.SelectLineUpEvent, Alternet.Editor.Wpf.SelectionType.Block)
Me.KeyList.Add(Keys.Down Or Keys.Control Or Keys.Alt, handlers.SelectLineDownEvent, Alternet.Editor.Wpf.SelectionType.Block)
Me.KeyList.Add(Keys.Left Or Keys.Control Or Keys.Alt, handlers.SelectCharLeftEvent, Alternet.Editor.Wpf.SelectionType.Block)
Me.KeyList.Add(Keys.Right Or Keys.Control Or Keys.Alt, handlers.SelectCharRightEvent, Alternet.Editor.Wpf.SelectionType.Block)
Me.KeyList.Add(Keys.Prior Or Keys.Control Or Keys.Alt, handlers.SelectPageUpEvent, Alternet.Editor.Wpf.SelectionType.Block)
Me.KeyList.Add(Keys.[Next] Or Keys.Control Or Keys.Alt, handlers.SelectPageDownEvent, Alternet.Editor.Wpf.SelectionType.Block)
Me.KeyList.Add(Keys.Home Or Keys.Control Or Keys.Alt, handlers.SelectLineBeginEvent, Alternet.Editor.Wpf.SelectionType.Block)
Me.KeyList.Add(Keys.[End] Or Keys.Control Or Keys.Alt, handlers.SelectLineEndEvent, Alternet.Editor.Wpf.SelectionType.Block)
End Sub