System.IniFiles.TStringHash.Modify

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Modify(const Key: string; Value: Integer): Boolean;

C++

bool __fastcall Modify(const System::UnicodeString Key, int Value);

Properties

Type Visibility Source Unit Parent
function public
System.IniFiles.pas
System.IniFiles.hpp
System.IniFiles TStringHash

Description

Modifies the value associated with the specified key.

The Modify method sets the value of the item with the given Key to the one specified by the Value parameter.

Modify returns True if the key exists in the bucket list and the operation can be completed, and False otherwise.

See Also