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