*** empty log message ***
[m17n/m17n-lib-cs.git] / textprop.cs
1 using System;
2 using System.Collections.Generic;
3 using M17N.Core;
4
5 public class Test
6 {
7   public static void Main ()
8   {
9     String str = "0123456789";
10     MText mt = new MText (str);
11     MSymbol sym = new MSymbol ("sym");
12     MTextProperty prop1 = new MTextProperty (sym, "test1");
13     MTextProperty prop2 = new MTextProperty (sym, "test2");
14
15     mt.PushProp (2, 5, prop1);
16     mt.DumpProp ();
17     mt.PushProp (3, 6, prop2);
18     mt.DumpProp ();
19     mt.Del (4, 9);
20     mt.DumpProp ();
21     mt.Ins (4, new MText ("45678"));
22     mt.DumpProp ();
23     mt.PopProp (0, 3, sym);
24     mt.DumpProp ();
25     mt.PopProp (2, 8, sym);
26     mt.DumpProp ();
27   }
28 }