Roster PrinterPrint Roster As HTML(Roster, String, Boolean, String, String, String, String, String, String) Method
Prints the roster as HTML.
Definition
Namespace: ASAP.NRP.Core.Tools
Assembly: NRP (in NRP.dll) Version: 3.49.0+964b2dfb493dfda37da83e5373992cb1cc934e98
True if successful, false otherwise.
Assembly: NRP (in NRP.dll) Version: 3.49.0+964b2dfb493dfda37da83e5373992cb1cc934e98
C#
public static bool PrintRosterAsHTML(
Roster roster,
string filePath,
bool embedCssFile,
string computationTime,
string algorithm,
string foundBy,
string date,
string system,
string CPU
)VB
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 BooleanC++
public:
static bool PrintRosterAsHTML(
Roster^ roster,
String^ filePath,
bool embedCssFile,
String^ computationTime,
String^ algorithm,
String^ foundBy,
String^ date,
String^ system,
String^ CPU
)F#
static member PrintRosterAsHTML :
roster : Roster *
filePath : string *
embedCssFile : bool *
computationTime : string *
algorithm : string *
foundBy : string *
date : string *
system : string *
CPU : string -> bool Parameters
- roster Roster
- The roster to print.
- filePath String
- The html file path.
- embedCssFile Boolean
- This is no longer used and css files are never embedded in the HTML.
- computationTime String
- The time taken to find the solution.
- algorithm String
- The name of the algorithm used to find the solution.
- foundBy String
- The person who found the solution.
- date String
- The date the solution was found.
- system String
- The specification of the machine that the algorithm was run on.
- CPU String
- CPU details.
Return Value
BooleanTrue if successful, false otherwise.