[Overview][Constants][Types][Classes][Procedures and functions] Reference for unit 'typinfo' (#rtl)

StringToSet

Convert string description to a set.

Declaration

Source position: line 0

function StringToSet(

  PropInfo: PPropInfo;

  const Value: String

):Integer;

function StringToSet(

  TypeInfo: PTypeInfo;

  const Value: String

):Integer;

Description

StringToSetconverts the string representation of a set in Valueto a integer representation of the set, using the property information found in PropInfo. This property information should point to the property information of a set property. The function returns the integer representation of the set. (i.e, the set value, typecast to an integer)

The string representation can be surrounded with square brackets, and must consist of the names of the elements of the base type of the set. The base type of the set should be an enumerated type. The elements should be separated by commas, and may be surrounded by spaces. each of the names will be fed to the GetEnumValuefunction.

For an example, see SetToString.

Errors

No checking is done to see whether PropInfopoints to valid property information. If a wrong name is given for an enumerated value, then an EPropertyErrorwill be raised.

See also

GetEnumName

  

Return name of enumeration constant.

GetEnumValue

  

Get ordinal value for enumerated type by name

SetToString

  

Convert set to a string description