Try to convert a roman numeral to an integer value.
Source position: strutils.pp line 241
function TryRomanToInt(  | 
S: string;  | 
out N: LongInt;  | 
Strictness: TRomanConversionStrictness = rcsRelaxed  | 
):Boolean;  | 
TryRomanToInt will try to convert the roman numeral in S to an integer and returns the integer value in N. The strictness of the conversion algorithm is determined by Strictness. If the conversion succeeds, then True is returned, or else False.
  | 
How to treat invalid roman numerals in TryRomanToInt.  | 
|
  | 
Convert a roman numeral to an integer value.  | 
|
  | 
Convert a string with a Roman number to it's decimal value.  | 
|
  | 
Represent an integer with roman numerals.  |