Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of <see cref="ListItem"/> class.
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="attributes"></param>
 public ListItem(DomElement parent, BlockElementAttributes attributes) :
     base(parent, attributes)
 {
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of <see cref="UnorderedList"/> class.
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="attributes"></param>
 public UnorderedList(DomElement parent, BlockElementAttributes attributes) :
     base(parent, attributes)
 {
 }
 /// <summary>
 /// Initializes a new instance of <see cref="Paragraph"/> class.
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="attributes"></param>
 public Paragraph(DomElement parent, BlockElementAttributes attributes) :
     base(parent, attributes)
 {
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of <see cref="TableCell"/> class.
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="attributes"></param>
 public TableCell(DomElement parent, BlockElementAttributes attributes) :
     base(parent, attributes)
 {
 }
Esempio n. 5
0
 /// <summary>
 /// Initializes a new instance of <see cref="Image"/> class.
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="attributes"></param>
 /// <param name="url"></param>
 /// <param name="alternateText"></param>
 public Image(DomElement parent, BlockElementAttributes attributes, String url, String alternateText) :
     base(parent, attributes)
 {
     this.url           = url;
     this.alternateText = alternateText;
 }
Esempio n. 6
0
 /// <summary>
 /// Initializes a new instance of <see cref="Blockquote"/> class.
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="attributes"></param>
 public Blockquote(DomElement parent, BlockElementAttributes attributes) :
     base(parent, attributes)
 {
 }
Esempio n. 7
0
 /// <summary>
 /// Initializes a new instance of <see cref="Footnote"/> class.
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="attributes"></param>
 /// <param name="number"></param>
 public Footnote(DomElement parent, BlockElementAttributes attributes, Int32 number) :
     base(parent, attributes)
 {
     this.number = number;
 }
Esempio n. 8
0
 /// <summary>
 /// Initializes a new instance of <see cref="List"/> class.
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="attributes"></param>
 protected List(DomElement parent, BlockElementAttributes attributes) :
     base(parent, attributes)
 {
 }
Esempio n. 9
0
 /// <summary>
 /// Initializes a new instance of <see cref="Heading"/> class/
 /// </summary>
 /// <param name="parent">The parent of this <see cref="Heading"/>.</param>
 /// <param name="attributes"><see cref="BlockElementAttributes"/> of this <see cref="Heading"/>.</param>
 /// <param name="level">The value which contains the absolute level of this <see cref="Heading"/>.</param>
 /// <param name="text">The text of this <see cref="Heading"/>.</param>
 public Heading(DomElement parent, BlockElementAttributes attributes, Int32 level, String text) :
     base(parent, attributes)
 {
     this.level = level;
     this.text  = text;
 }