DataDOMEvent.Site Property
Gets a reference to the XML Document Object Model (DOM) node where the data validation event is currently being processed.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)
Syntax
'Declaration
'Usage
Remarks
After you have set a reference to the XML DOM node that the Site property returns, you can use any of the properties and methods that are supported by the XML DOM.
Example
In the following example, the DataDOMEventObject object is used to check the value of the node using the Site property. If the data validation fails, the ReportError method is used to create a custom error.
public void field1_OnValidate(DataDOMEvent e)
{
if(e.Site.text != "")
{
int quantity = int.Parse(e.Site.text.ToString());
if(quantity > 50)
{
e.ReportError(e.Site, "Invalid quantity. The total number of each type of block cannot exceed 50.", false, "", 2,"modeless");
}
if(quantity < 0)
{
e.ReportError(e.Site, "Invalid quantity. The total number of each type of block cannot be less than 0.", false,"", 2,"modeless");
}
}
}
See Also
Reference
DataDOMEvent Interface
DataDOMEvent Members
Microsoft.Office.Interop.InfoPath Namespace