RosterPrinterPrintRosterAsHTML Method (Roster, String, Boolean, String, String, String, String, String, String) |
Prints the roster as HTML.
Namespace:
ASAP.NRP.Core.Tools
Assembly:
NRP (in NRP.dll) Version: 3.49.0+539d3dcf73518163e952c8abb92256bf56ba5029
Syntaxpublic static bool PrintRosterAsHTML(
Roster roster,
string filePath,
bool embedCssFile,
string computationTime,
string algorithm,
string foundBy,
string date,
string system,
string CPU
)
Public Shared Function PrintRosterAsHTML (
roster As Roster,
filePath As String,
embedCssFile As Boolean,
computationTime As String,
algorithm As String,
foundBy As String,
date As String,
system As String,
CPU As String
) As Boolean
public:
static bool PrintRosterAsHTML(
Roster^ roster,
String^ filePath,
bool embedCssFile,
String^ computationTime,
String^ algorithm,
String^ foundBy,
String^ date,
String^ system,
String^ CPU
)
static member PrintRosterAsHTML :
roster : Roster *
filePath : string *
embedCssFile : bool *
computationTime : string *
algorithm : string *
foundBy : string *
date : string *
system : string *
CPU : string -> bool
Parameters
- roster
- Type: ASAP.NRP.CoreRoster
The roster to print. - filePath
- Type: SystemString
The html file path. - embedCssFile
- Type: SystemBoolean
This is no longer used and css files are never
embedded in the HTML. - computationTime
- Type: SystemString
The time taken to find the solution. - algorithm
- Type: SystemString
The name of the algorithm used to find the solution. - foundBy
- Type: SystemString
The person who found the solution. - date
- Type: SystemString
The date the solution was found. - system
- Type: SystemString
The specification of the machine that the algorithm was run on. - CPU
- Type: SystemString
CPU details.
Return Value
Type:
BooleanTrue if successful, false otherwise.
See Also