Share via


XDocument.Solution Property

InfoPath Developer Reference

A read-only property that returns a reference to the Solution object that is associated with a Microsoft Office InfoPath 2007 form. Read-only

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.Solution

expression   An expression that returns a XDocument object.

Return Value
Solution

Remarks

The Solution object provides access to information about a form's associated form definition (.xsf) file, including access to an XML Document Object Model (DOM) that contains all of the source XML of the .xsf file.

Security Level 2: 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.

Example

In the following example, the Solution property of the XDocument object is used to load a variable with the XML contents of the .xsf file:

JScript
  var strXSF;
strXSF = XDocument.Solution.DOM.xml;

See Also