OSDN Git Service

MVVM化の準備のため、RectSelectionとIndentModeをDocumentに移動させた
[fooeditengine/FooEditEngine.git] / Core / Document.cs
index c9c41aa..62b9668 100644 (file)
@@ -190,6 +190,24 @@ namespace FooEditEngine
         }
 
         /// <summary>
+        /// 矩形選択モードなら真を返し、そうでない場合は偽を返す
+        /// </summary>
+        public bool RectSelection
+        {
+            get;
+            set;
+        }
+
+        /// <summary>
+        /// インデントの方法を表す
+        /// </summary>
+        public IndentMode IndentMode
+        {
+            get;
+            set;
+        }
+
+        /// <summary>
         /// ラインマーカーを描くなら偽。そうでなければ真
         /// </summary>
         public bool HideLineMarker