'Declaration
Public Event BeforeSettingPropertyValue As BeforeSettingPropertyValueHandler
'Usage
Dim instance As FormulaProvider Dim handler As BeforeSettingPropertyValueHandler AddHandler instance.BeforeSettingPropertyValue, handler
public event BeforeSettingPropertyValueHandler BeforeSettingPropertyValue
Event Data
The event handler receives an argument of type BeforeSettingPropertyValueEventArgs containing data related to this event. The following BeforeSettingPropertyValueEventArgs properties provide information specific to this event.
Property | Description |
---|---|
OwnerObject | Gets the owner object. |
PropertyDescriptor | Gets the property descriptor. |
Value | Gets or sets the value. |
See Also