Xml.xmldom.TDOMVendorList.Find

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

function Find(const VendorDesc: string): TDOMVendor;

C++

TDOMVendor* __fastcall Find(const System::UnicodeString VendorDesc);

Properties

Type Visibility Source Unit Parent
function public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom TDOMVendorList

Description

Returns a vendor from the list, given its description.

Call Find to access a vendor in the list, given its description. If there is no vendor in the list with the specified description, Find returns nil (Delphi) or NULL (C++).

VendorDesc is the string that is returned by the TDOMVendor object's Description method.

Find returns a TDOMVendor object, which can be used as a value for the DOMVendor property of a TXMLDocument component.

See Also