Boo.BooLangService.HandleSmartIndentAction.Execute C# (CSharp) Метод

Execute() публичный Метод

public Execute ( ) : bool
Результат bool
        public bool Execute()
        {
            int line, col;

            view.GetCaretPos(out line, out col);

            indenter.SetIndentationForNextLine(line);

            return false;
        }
HandleSmartIndentAction