[Overview][Constants][Types][Classes][Procedures and functions][Index] Reference for unit 'LazConfigStorage' (#lazutils)

TConfigStorage.SetFullPathValue

Defines the method used to resolve the specified node path prior to storing the specified value.

Declaration

Source position: lazconfigstorage.pas line 36

protected procedure TConfigStorage.SetFullPathValue(

  const APath: string;

  const AValue: string

); virtual; abstract;

procedure TConfigStorage.SetFullPathValue(

  const APath: string;

  AValue: Integer

); virtual; abstract;

procedure TConfigStorage.SetFullPathValue(

  const APath: string;

  AValue: Boolean

); virtual; abstract;

Arguments

APath

  

Path to the node where the specified value is stored.

AValue

  

Value stored in the specified node path. Overloaded variants allow AValue to be specified using as either a String, an Integer, or a Boolean type.

Arguments

APath

  

Path to the node where the specified value is stored.

AValue

  

Value stored in the specified node path. Overloaded variants allow AValue to be specified using as either a String, an Integer, or a Boolean type.

Arguments

APath

  

Path to the node where the specified value is stored.

AValue

  

Value stored in the specified node path. Overloaded variants allow AValue to be specified using as either a String, an Integer, or a Boolean type.

Description

SetFullPathValue is an overloaded abstract virtual method in TConfigStorage. It must be overridden in a descendent class to use the node notation required for the underlying storage mechanism.

SetFullPathValue is called from the SetValue method after ExtendPath has been called to include the CurrentBasePath value at the start of the node path in APath.

See also

TConfigStorage.SetFullPathValue

  

Defines the method used to resolve the specified node path prior to storing the specified value.

TConfigStorage.SetValue

  

Stores a value at the specified path in the configuration storage.

TConfigStorage.ExtendPath

  

Resolves a relative node path to the current base path for the storage mechanism.

TConfigStorage.CurrentBasePath

  

Contains the base node path where values are read or written in the storage mechanism.

TConfigMemStorage.SetFullPathValue

  

Implements the method used to resolve the specified node path prior to storing the specified value.

TXMLConfigStorage


Version 4.0 Generated 2025-05-03 Home