Functions.XMLGetTag 方法 | |
Get members of an XML tag node.
命名空间:
XSharp.XPP
程序集:
XSharp.XPP (在 XSharp.XPP.dll 中) 版本:2.22 GA
语法 FUNCTION XMLGetTag(
nTagHandle AS INT64,
aTagMember OUT USUAL
) AS LOGIC
public static bool XMLGetTag(
long nTagHandle,
out __Usual aTagMember
)
查看代码参数
- nTagHandle
- 类型:Int64
Numeric handle of an XML tag. - aTagMember
- 类型:__Usual
If the function returns successfully, this parameter contains an array with all members of the tag.
The parameter must be passed by reference. Single elements of the array can be accessed using constants listed below.
返回值
类型:
BooleanReturns .T. (true) if the tag is a valid tag and .F. (false) otherwise.
备注 This function is used to retrieve all members of an XML tag node.
The elements are the same as in Xbase++, and an extra 6th element has been added that contains the XmlNode object.
参见