Ejemplo n.º 1
0
 public int LoadRtfText(string text)
 {
     this.b = new StringReader(text);
     this.c = new RTFContainer(this.b);
     return(this.da());
 }
Ejemplo n.º 2
0
 public int LoadRTFFile(string path)
 {
     this.b = new StringReader(this.da(path));
     this.c = new RTFContainer(this.b);
     return(this.da());
 }