点击或拖拽改变大小

Functions.XMLGetChild 方法

X#
Get child of XML tag.

命名空间:  XSharp.XPP
程序集:  XSharp.XPP (在 XSharp.XPP.dll 中) 版本:2.22 GA
语法
 FUNCTION XMLGetChild(
	nTagHandle AS INT64,
	cChildTagName AS STRING
) AS INT64
查看代码

参数

nTagHandle
类型:Int64
Numeric handle for the XML tag.
cChildTagName
类型:String
The tag name of the child to search.

返回值

类型:Int64
Returns the numeric handle of the first child matching the specified name, or 0 if no child with the given name exists.
备注
This function is used to retrieve the first child tag of an XML tag matching the name specified with the second parameter. The XMLGetChildren() function can be used to obtain ALL child tags having a specific name.
参见