CursorRight

Build 1501 on 14/Nov/2017  This topic last edited on: 22/Jan/2015, at 10:17

When editing text on page on the Pages main tab or on the WYSIWYG pane of the Articles main tab, the Public Overridable Sub CursorRight(), assigned in the standard configuration to the RIGHT ARROW key allows you to:

Move the I-beam left and stop on each invisible tag, so you can remove the tag, if you want to, with DelTags.

If you edit text in the source pane and the tags are displayed, the CursorRight works in the native way.

You can turn off this behavior by creating an override of the CursorRight method in the CustomArticle.vb, as in the following example:

  Public Overrides Sub CursorRight()

      Text.CursorRight()

  End Sub