TRK7Parameters = class(TPersistent)

function StringValue(const ParameterIdent: integer): string;
Returns the string value of the parameter; an empty string if the parameter is not found
@ParameterIdent Parameter ID ('prm' + Parameter property)
@return Parameter value

function BooleanValue(const ParameterIdent: integer): boolean;
Returns the boolean value of the parameter; false if the parameter is not found
@ParameterIdent Parameter ID ('prm' + Parameter property)
@return Parameter value

function IntegerValue(const ParameterIdent: integer): integer;
Returns the integer value of the parameter; 0 if the parameter is not found
@ParameterIdent Parameter ID ('prm' + Parameter property)
@return Parameter value

  • No labels