TWordHelper.TryParse

Try to convert a string to a Word, report success or failure

Declaration

Source position: syshelph.inc line 468

public 
  class function TryParse(const AString: string; out AValue: Word)
                          : Boolean;  Static;

Description

TryParse attempts to convert the string AString to a Word, and reports the success of the attempt. If the attempt is successful, then True is returned, and the actual value of the Word is returned in AValue.

It uses the val]() function to perform the conversion, so no localization is taken into account.

See also

Name Description
Val Calculate numerical/enumerated value of a string.
TWordHelper.Parse Convert from a string