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

TConfigMemStorage.SetFullPathValue

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

Declaration

Source position: lazconfigstorage.pas line 131

protected procedure TConfigMemStorage.SetFullPathValue(

  const APath: string;

  const AValue: string

); override;

procedure TConfigMemStorage.SetFullPathValue(

  const APath: string;

  AValue: Boolean

); override;

procedure TConfigMemStorage.SetFullPathValue(

  const APath: string;

  AValue: Integer

); override;

Arguments

APath

  

Resolved 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

  

Resolved 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

  

Resolved 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 method in TConfigStorage. It implements the abstract virtual method introduced in the TConfigStorage ancestor. The overloaded variants convert AValue to a String type (when needed) and stores the value in a memory-based configuration node with the fully-qualified path specified in APath.

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.SetValue

  

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

TConfigStorage.SetFullPathValue

  

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

TConfigStorage.CurrentBasePath

  

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

TConfigStorage.ExtendPath

  

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

TXMLConfigStorage


Version 4.0 Generated 2025-05-03 Home