Online and CHM
ExportDocumentation Method
Example 



KellermanSoftware.StaticCodeAnalysis Namespace > QualityLogic Class : ExportDocumentation Method
Export configuration options available to an HTML file
Syntax
'Declaration
 
Public Sub ExportDocumentation( _
   ByVal templateName As KellermanSoftware.HTMLReports.TemplateName, _
   ByVal htmlFilePath As String _
) 
'Usage
 
Dim instance As QualityLogic
Dim templateName As KellermanSoftware.HTMLReports.TemplateName
Dim htmlFilePath As String
 
instance.ExportDocumentation(templateName, htmlFilePath)
public void ExportDocumentation( 
   KellermanSoftware.HTMLReports.TemplateName templateName,
   string htmlFilePath
)
public:
void ExportDocumentation( 
   KellermanSoftware.HTMLReports.TemplateName templateName,
   String^ htmlFilePath
) 

Parameters

templateName
htmlFilePath
Example
//Trial Mode
QualityLogic quality = new QualityLogic();
 
//Licensed Mode
//QualityLogic quality = new QualityLogic("User Name from Receipt", "License Key from Receipt");
 
string documentationPath = Path.Combine(Environment.CurrentDirectory, "Documentation.html");
quality.ExportDocumentation(TemplateName.BlackAndBlue, documentationPath);
'Trial Mode
Dim quality As New QualityLogic()
 
'Licensed Mode
'QualityLogic quality = new QualityLogic("User Name from Receipt", "License Key from Receipt");
 
Dim documentationPath As String = Path.Combine(Environment.CurrentDirectory, "Documentation.html")
quality.ExportDocumentation(TemplateName.BlackAndBlue, documentationPath)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

QualityLogic Class
QualityLogic Members