Ejemplo n.º 1
0
 public IAnyContent Block(){
     var result = new AnyContent{Name = "Block"};
     Add(result);
     return result;
 }
Ejemplo n.º 2
0
 public IAnyContent Paragraph(string text){
     var result = new AnyContent{Name = "p", Text = text};
     Add(result);
     return this;
 }