📄 xmlconfig.pas
字号:
unit XMLConfig;
{
An XML configuration properties handler.
Requires MSXML v3 package from Microsoft.
Reads an XML properties file, returning the property name and values
in a string list. Property names are the accumulated element names
(ignoring the top level element) separated by periods.
Values are the text content of the elements.
For example:
<?xml version="1.0"?>
<properties>
<sub1>
<prop1>abcdef</prop1>
<prop2>123456</prop2>
</sub1>
</properties>
becomes
sub1.prop1=abcdef
sub1.prop2=123456
Copyright
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -