Alsing.SourceCode.SyntaxDocumentExporters.CollapsingHTMLExporter.Export C# (CSharp) Method

Export() public method

Exports the content of a SyntaxDocument to a HTML formatted string
public Export ( SyntaxDocument doc, string ImagePath ) : string
doc SyntaxDocument SyntaxDocument object to export from
ImagePath string File path tho the images to use in the HTML string
return string
        public string Export(SyntaxDocument doc, string ImagePath)
        {
            return Export(doc, Color.Transparent, ImagePath, "");
        }

Same methods

CollapsingHTMLExporter::Export ( SyntaxDocument doc, Color BGColor, string ImagePath, string Style ) : string