XmlValidatingEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the method that will handle the Validating event of a field or group.
public delegate void XmlValidatingEventHandler(System::Object ^ sender, XmlValidatingEventArgs ^ e);
public delegate void XmlValidatingEventHandler(object sender, XmlValidatingEventArgs e);
type XmlValidatingEventHandler = delegate of obj * XmlValidatingEventArgs -> unit
Public Delegate Sub XmlValidatingEventHandler(sender As Object, e As XmlValidatingEventArgs)
Parameters
- sender
- Object
The source of the event.
An XmlValidatingEventArgs object that contains the event data.
Examples
For an example of using the XmlValidatingEventHandler delegate, see the sample code in the Validating event of the XmlEvent class.
Remarks
Important: The code skeleton for an event handler associated with the Validating event, which uses the XmlValidatingEventHandler delegate, should be added only from the Microsoft InfoPath user interface. For more information on how to add event handlers in InfoPath, see How Do I: Add an Event Handler.
This type or member can be accessed from code running in forms opened in Microsoft InfoPath Filler or in a Web browser.