_XDocument2.GetDOM Method (String)
Gets a reference to the XML Document Object Model (DOM) of the specified DataSourceObject object associated with the XDocument object.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
Function GetDOM ( _
bstrName As String _
) As IXMLDOMDocument
'Usage
Dim instance As _XDocument2
Dim bstrName As String
Dim returnValue As IXMLDOMDocument
returnValue = instance.GetDOM(bstrName)
IXMLDOMDocument GetDOM(
string bstrName
)
Parameters
bstrName
Type: System.StringThe name of a DataObject object
Return Value
Type: Microsoft.Office.Interop.InfoPath.SemiTrust.IXMLDOMDocument
An IXMLDOMDocument of the XML Document Object Model (DOM) of the specified DataObject object associated with the XDocument object.
Implements
Remarks
After you have a reference to the XML DOM that the GetDOM method returns, you can use any of the properties and methods that the XML DOM supports to manipulate the data that the DOM contains.
Important
This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.
Examples
In the following example, the GetDOM method of the XDocument object is used to set a reference to the XML DOM that it returns, which in this case is the DataSourceObject
object named "CityDropDownList":
IXMLDOMDocument city = thisXDocument.GetDOM("CityDropDownList");