Пример #1
0
 public HTMLBuilder(HTMLDocumentType documentType, HTMLBuilderSettings settings, IHTMLElement rootElement)
 {
     DocumentType = documentType;
     Settings     = settings;
     if (rootElement != null)
     {
         AddElement(rootElement);
     }
 }
Пример #2
0
 public HTMLBuilder(HTMLBuilderSettings settings, IHTMLElement rootElement)
 {
     Settings     = settings;
     DocumentType = HTMLDocumentType.HTML5;
     if (rootElement != null)
     {
         AddElement(rootElement);
     }
 }
Пример #3
0
 public HTMLBuilder(IHTMLElement rootElement)
 {
     Settings     = new HTMLBuilderSettings();
     DocumentType = HTMLDocumentType.HTML5;
     if (rootElement != null)
     {
         AddElement(rootElement);
     }
 }
Пример #4
0
 public HTMLBuilder(HTMLDocumentType documentType, HTMLBuilderSettings settings)
 {
     DocumentType = documentType;
     Settings     = settings;
 }
Пример #5
0
 public HTMLBuilder(HTMLBuilderSettings settings)
 {
     Settings     = settings;
     DocumentType = HTMLDocumentType.HTML5;
 }
Пример #6
0
 public HTMLBuilder()
 {
     Settings     = new HTMLBuilderSettings();
     DocumentType = HTMLDocumentType.HTML5;
 }