Discuss this help topic in SecureBlackbox Forum

TElXMLDOMElement.AttribStrings

TElXMLDOMElement     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Use this property to access individual node attributes by name.

Declaration

[C#]
    string AttribStrings[string Name];

[VB.NET]
    Property AttribStrings(ByVal Name As String) As String

[Pascal]
    property AttribStrings[const Name : XMLString] : WideString;

[C++]
    void get_AttribStrings(const sb_u16string &aName, sb_u16string &OutResult);
    void get_AttribStrings(const std::wstring &aName, std::wstring &OutResult);
    void set_AttribStrings(const sb_u16string &aName, const sb_u16string &aValue);
    void set_AttribStrings(const std::wstring &aName, const std::wstring &aValue);

[PHP]
    string get_AttribStrings(string $aName)
    void set_AttribStrings(string $aName, string $aValue)

[Java]
    String getAttribStrings(String aName);
    void setAttribStrings(String aName, String aValue);

Parameters

  • Name - The name of desired attribute.
  • aName - ...
  • aValue - ...

Description

    Use this property to access the individual attributes of the XML node by name.

Discuss this help topic in SecureBlackbox Forum