Esempio n. 1
0
        public static void SetCursorToTheBeginningOfNextToken(Block block)
        {
            Block next = block.FindNextFocusableBlockInChain();

            if (next != null)
            {
                next.SetCursorToTheBeginning(true);
            }
        }