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

TXMLConfig.SetExtendedValue

Sets the value in the DOM node at the specified path using an extended data type.

Declaration

Source position: laz2_xmlcfg.pas line 127

public procedure TXMLConfig.SetExtendedValue(

  const APath: string;

  const AValue: extended

);

Arguments

APath

  

Path to the DOM node updated in the method.

AValue

  

Value stored in the specified DOM node.

Description

SetExtendedValue is a procedure used to set the value in the DOM node at the specified path to the value in the Extended data type.

APath contains the path specifier which describes the hierarchy of elements and attributes to the value. See TXMLConfig Path Syntax for details about path specifiers. AValue contains the Extended data type stored at the specified path.

SetExtendedValue is similar to the TXMLConfig.SetValue method; in fact, it calls SetValue to store the string representation of AValue prepared using ExtendedToStr.

See also

TXMLConfig.SetValue

  

Sets the value in a DOM node at the specified path.

TXMLConfig.ExtendedToStr

  

Converts an extended value to its representation as a String.

TXMLConfig.DeletePath

  

Deletes the DOM node at the specified path in the Document.

TXMLConfig-PathSyntax

  

TXMLConfig Path Syntax.


Version 4.0 Generated 2025-05-03 Home