Functions.XMLGetChildren 方法 | |
Get array of children of an XML tag.
命名空间:
XSharp.XPP
程序集:
XSharp.XPP (在 XSharp.XPP.dll 中) 版本:2.22 GA
语法 FUNCTION XMLGetChildren(
nTagHandle AS INT64,
cChildTagName AS STRING
) AS ARRAY
public static __Array XMLGetChildren(
long nTagHandle,
string cChildTagName
)
查看代码参数
- nTagHandle
- 类型:Int64
Numeric handle for the XML tag. - cChildTagName
- 类型:String
The tag name of the child tags to search.
返回值
类型:
__ArrayReturns an array of child handles matching the name specified as second parameter, or 0 if no child with the given name exists.
备注 This function is used to retrieve all child tags having the tag name specified with the second parameter.
参见