[Overview][Constants][Types][Classes][Procedures and functions][Index] 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

StringToSet converts the string representation of a set in Value to 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 GetEnumValue function.

For an example, see SetToString.

Errors

No checking is done to see whether PropInfo points to valid property information. If a wrong name is given for an enumerated value, then an EPropertyError will 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

The latest version of this document can be found at lazarus-ccr.sourceforge.net.