Class EWN (Error, Warning, Note) contains functions for handling run-time errors, warnings and notes More...
Public Member Functions | |
object | TraceEWN (string Code) |
Trace error, warning or note to the log. More... | |
object | TraceEWN (string Code, string Param) |
Trace error, warning or note to the log. More... | |
object | TraceEWN (string Code, bool PrintDescription, bool PrintSolution) |
Trace error, warning or note to the log. More... | |
object | TraceEWN (string Code, bool PrintDescription, bool PrintSolution, string Param) |
Trace error, warning or note to the log. More... | |
object | TraceEWN (string Code, double Width) |
Trace error, warning or note to the log. More... | |
object | TraceEWN (string Code, double Width, string Param) |
Trace error, warning or note to the log. More... | |
object | TraceEWN (string Code, bool PrintType, bool PrintDescription, bool PrintSolution, double Width) |
Trace error, warning or note to the log. More... | |
object | TraceEWN (string Code, bool PrintType, bool PrintDescription, bool PrintSolution, double Width, string Param) |
Trace error, warning or note to the log. More... | |
object | TraceRectEWN (string Code, double Width) |
Trace error, warning or note to the log. More... | |
object | TraceRectEWN (string Code, double Width, string Param) |
Trace error, warning or note to the log. More... | |
object | TraceRectEWN (string Code, bool PrintType, bool PrintDescription, bool PrintSolution, double Width) |
Trace error, warning or note to the log. More... | |
object | TraceRectEWN (string Code, bool PrintType, bool PrintDescription, bool PrintSolution, double Width, string Param) |
Trace error, warning or note to the log. More... | |
string | GetType (string Code) |
Return type of the EWN item More... | |
string | GetDescription (string Code) |
Returns description of EWN with given code. More... | |
string | GetDescription (string Code, string LangCode) |
Returns description of EWN with given code. More... | |
string | GetSolution (string Code) |
Returns solution of EWN with given code. More... | |
string | GetSolution (string Code, string LangCode) |
Returns solution of EWN with given code. More... | |
TTable | DrawTable () |
Draw table of errors, warnings and notes More... | |
TTable | DrawTable (int Count) |
Draw table of errors, warnings and notes More... | |
TTable | DrawTable (int From, int To) |
Draw table of errors, warnings and notes More... | |
TTable | DrawTable (bool PrintNum, bool PrintTyp, bool PrintDes, bool PrintSol) |
Draw table of errors, warnings and notes More... | |
TTable | DrawTable (int From, int To, bool PrintNum, bool PrintTyp, bool PrintDes, bool PrintSol) |
Draw table of errors, warnings and notes More... | |
TTable | GetTable () |
Return table of errors, warnings and notes More... | |
TTable | GetTable (int Count) |
Return table of errors, warnings and notes More... | |
TTable | GetTable (int From, int To) |
Return table of errors, warnings and notes More... | |
TTable | GetTable (bool PrintNum, bool PrintTyp, bool PrintDes, bool PrintSol) |
Returns table of errors, warnings and notes More... | |
TTable | GetTable (int From, int To, bool PrintNum, bool PrintTyp, bool PrintDes, bool PrintSol) |
Return table of errors, warnings and notes More... | |
Class EWN (Error, Warning, Note) contains functions for handling run-time errors, warnings and notes
TTable DrawTable | ( | ) |
Draw table of errors, warnings and notes
TTable DrawTable | ( | int | Count | ) |
Draw table of errors, warnings and notes
Count | Number of EWN which are going to be exported to the table (counting from the back). |
TTable DrawTable | ( | int | From, |
int | To | ||
) |
Draw table of errors, warnings and notes
From | Index of first EWN which is going to be exported to the table |
To | Index of last EWN which is going to be exported to the table |
TTable DrawTable | ( | bool | PrintNum, |
bool | PrintTyp, | ||
bool | PrintDes, | ||
bool | PrintSol | ||
) |
Draw table of errors, warnings and notes
PrintNum | Set TRUE to add index column. |
PrintTyp | Set TRUE to add EWN type column. |
PrintDes | Set TRUE to add EWN description column. |
PrintSol | Set TRUE to add EWN solution column. |
TTable DrawTable | ( | int | From, |
int | To, | ||
bool | PrintNum, | ||
bool | PrintTyp, | ||
bool | PrintDes, | ||
bool | PrintSol | ||
) |
Draw table of errors, warnings and notes
From | Index of first EWN which is going to be exported to the table |
To | Index of last EWN which is going to be exported to the table |
PrintNum | Set TRUE to add index column. |
PrintTyp | Set TRUE to add EWN type column. |
PrintDes | Set TRUE to add EWN description column. |
PrintSol | Set TRUE to add EWN solution column. |
string GetDescription | ( | string | Code | ) |
Returns description of EWN with given code.
Code | Code of the error, warning or note |
string GetDescription | ( | string | Code, |
string | LangCode | ||
) |
Returns description of EWN with given code.
Code | Code of the error, warning or note |
LangCode | Windows code of required language |
string GetSolution | ( | string | Code | ) |
Returns solution of EWN with given code.
Code | Code of the error, warning or note |
string GetSolution | ( | string | Code, |
string | LangCode | ||
) |
Returns solution of EWN with given code.
Code | Code of the error, warning or note |
LangCode | Windows code of required language |
TTable GetTable | ( | ) |
Return table of errors, warnings and notes
TTable GetTable | ( | int | Count | ) |
Return table of errors, warnings and notes
Count | Number of EWN which are going to be exported to the table (counting from the back). |
TTable GetTable | ( | int | From, |
int | To | ||
) |
Return table of errors, warnings and notes
From | Index of first EWN which is going to be exported to the table |
To | Index of last EWN which is going to be exported to the table |
TTable GetTable | ( | bool | PrintNum, |
bool | PrintTyp, | ||
bool | PrintDes, | ||
bool | PrintSol | ||
) |
Returns table of errors, warnings and notes
PrintNum | Set TRUE to add index column. |
PrintTyp | Set TRUE to add EWN type column. |
PrintDes | Set TRUE to add EWN description column. |
PrintSol | Set TRUE to add EWN solution column. |
TTable GetTable | ( | int | From, |
int | To, | ||
bool | PrintNum, | ||
bool | PrintTyp, | ||
bool | PrintDes, | ||
bool | PrintSol | ||
) |
Return table of errors, warnings and notes
From | Index of first EWN which is going to be exported to the table |
To | Index of last EWN which is going to be exported to the table |
PrintNum | Set TRUE to add index column. |
PrintTyp | Set TRUE to add EWN type column. |
PrintDes | Set TRUE to add EWN description column. |
PrintSol | Set TRUE to add EWN solution column. |
string GetType | ( | string | Code | ) |
Return type of the EWN item
Code | Code of the EWN item. |
object TraceEWN | ( | string | Code | ) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
object TraceEWN | ( | string | Code, |
string | Param | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
Param | Parameter defining inline string placed to the message |
object TraceEWN | ( | string | Code, |
bool | PrintDescription, | ||
bool | PrintSolution | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
PrintDescription | Set TRUE to print EWN description |
PrintSolution | Set TRUE to print EWN solution |
object TraceEWN | ( | string | Code, |
bool | PrintDescription, | ||
bool | PrintSolution, | ||
string | Param | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
PrintDescription | Set TRUE to print EWN description |
PrintSolution | Set TRUE to print EWN solution |
Param | Parameter defining inline string placed to the message |
object TraceEWN | ( | string | Code, |
double | Width | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
Width | Width of the bounding rectangle. |
object TraceEWN | ( | string | Code, |
double | Width, | ||
string | Param | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
Width | Width of the bounding rectangle. |
Param | Parameter defining inline string placed to the message |
object TraceEWN | ( | string | Code, |
bool | PrintType, | ||
bool | PrintDescription, | ||
bool | PrintSolution, | ||
double | Width | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
PrintType | Set TRUE to print type of EWN item. |
PrintDescription | Set TRUE to print EWN description |
PrintSolution | Set TRUE to print EWN solution |
Width | Width of the bounding rectangle. |
object TraceEWN | ( | string | Code, |
bool | PrintType, | ||
bool | PrintDescription, | ||
bool | PrintSolution, | ||
double | Width, | ||
string | Param | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
PrintType | Set TRUE to print type of EWN item. |
PrintDescription | Set TRUE to print EWN description |
PrintSolution | Set TRUE to print EWN solution |
Width | Width of the bounding rectangle. |
Param | Parameter defining inline string placed to the message |
object TraceRectEWN | ( | string | Code, |
double | Width | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
Width | Width of the bounding rectangle. |
object TraceRectEWN | ( | string | Code, |
double | Width, | ||
string | Param | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
Width | Width of the bounding rectangle. |
Param | Parameter defining inline string placed to the message |
object TraceRectEWN | ( | string | Code, |
bool | PrintType, | ||
bool | PrintDescription, | ||
bool | PrintSolution, | ||
double | Width | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
PrintType | Set TRUE to print type of EWN item. |
PrintDescription | Set TRUE to print EWN description |
PrintSolution | Set TRUE to print EWN solution |
Width | Width of the bounding rectangle. |
object TraceRectEWN | ( | string | Code, |
bool | PrintType, | ||
bool | PrintDescription, | ||
bool | PrintSolution, | ||
double | Width, | ||
string | Param | ||
) |
Trace error, warning or note to the log.
Code | Code of the error, warning or note |
PrintType | Set TRUE to print type of EWN item. |
PrintDescription | Set TRUE to print EWN description |
PrintSolution | Set TRUE to print EWN solution |
Width | Width of the bounding rectangle. |
Param | Parameter defining inline string placed to the message |