// * // * Copyright (C) 2008 Roger Alsing : http://www.RogerAlsing.com // * // * This library is free software; you can redistribute it and/or modify it // * under the terms of the GNU Lesser General Public License 2.1 or later, as // * published by the Free Software Foundation. See the included license.txt // * or http://www.gnu.org/copyleft/lesser.html for details. // * // * namespace Alsing.SourceCode { //what kind of undoaction is it? /// /// /// public enum UndoAction { /// /// /// InsertRange = 1, /// /// /// DeleteRange = 2, } //object that holds undo information /// /// /// public sealed class UndoBlock { /// /// /// public UndoAction Action = 0; /// /// /// public TextPoint Position = new TextPoint(0, 0); /// /// /// public string Text = ""; } }