Functions.XMLGetAttribute 方法 | |
Get attribute value of an XML tag.
命名空间:
XSharp.XPP
程序集:
XSharp.XPP (在 XSharp.XPP.dll 中) 版本:2.22 GA
语法 FUNCTION XMLGetAttribute(
nTagHandle AS INT64,
cAttributeName AS STRING
) AS STRING
public static string XMLGetAttribute(
long nTagHandle,
string cAttributeName
)
查看代码参数
- nTagHandle
- 类型:Int64
Numeric handle of the XML tag. - cAttributeName
- 类型:String
Character string containing the name of the tag attribute whose value is searched.
返回值
类型:
StringReturns a string representing the value of a tag attribute or NULL_STRING if no attribute with the given name exists.
备注 This function is used to obtain values of individual XML tag attributes by attribute name.
参见