Version

ParseError Event

Fired when an error occurs parsing the value. This occurs when the formatted link editor encounters an invalid value.
Syntax
'Declaration
 
Public Event ParseError As ParseErrorEventHandler
public event ParseErrorEventHandler ParseError
Event Data

The event handler receives an argument of type ParseErrorEventArgs containing data related to this event. The following ParseErrorEventArgs properties provide information specific to this event.

PropertyDescription
Context Returns an object that provides some information about where the parse error occurred.
Exception The exception, if any, associated with the parse error.
TreatValueAs Gets or sets the new method to treat the value with.
Value The value that had the parsing error. This property is settable. You can set it to a new value to display in place of the original value.
Remarks

This event is fired when the value specified to the formatted link editor has parsing errors.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also