1

我正在使用只有标准 VCL 库的 Delphi 2010。目标系统是win32。

如果我有对 IXMLDocument 的引用,我如何获得 IXMLDocument 包装的底层对象的 IXMLDOMDocument2 接口?

4

1 回答 1

7
function GetXMLDOMDocument2(const XMLDocument: IXMLDocument): IXMLDOMDocument2;
begin
  Result := (XMLDocument.DOMDocument as IXMLDOMNodeRef).GetXMLDOMNode as IXMLDOMDocument2;
end;
于 2012-07-07T14:38:22.507 回答