Version

ParseValue Event

Fired when a CalcSettings instance retrieves a value from an extended control.
Syntax
'Declaration
 
Public Event ParseValue As ParseValueEventHandler
public event ParseValueEventHandler ParseValue
Event Data

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

PropertyDescription
Control (Inherited from Infragistics.WebUI.UltraWebCalcManager.ControlValueEventArgsBase)Gets the extended Web element whose property is being read or written.
Handled Gets and sets whether the parsing was handled.
Value (Inherited from Infragistics.WebUI.UltraWebCalcManager.ControlValueEventArgsBase)Gets/Sets the value which is being sent from the _CALCMANAGER_ to the calculable element, or from the calculable element to the _CALCMANAGER_.
Remarks

ParseValue event is fired any time a CalcSettings retrieves a value from a control. The Value can then be modified by an application before it gets passed back into the _CALCMANAGER_ for the purposes of formatting, type conversion, etc.

Note that if a control is both the source and target of a formula, the ParseValue event will not fire because the _CALCMANAGER_ does not retrive the value from the control. Instead, the _CALCMANAGER_ uses the calculated result of the formula. This means that an extended control that is being used as both source and target of a formula can safely be formatted using the FormatValue event without the need to reverse the formatting.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, 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