Version

LoadPropertyPersistence Event

Occurs before a property is loaded.
Syntax
'Declaration
 
Public Event LoadPropertyPersistence As EventHandler(Of LoadPropertyPersistenceEventArgs)
public event EventHandler<LoadPropertyPersistenceEventArgs> LoadPropertyPersistence
Event Data

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

PropertyDescription
Handled Gets/sets whether the property was loaded in the event, and thus shouldn't try to be loaded by the framework.
Identifier Gets an identifier that can be used to identify an property being loaded.
LoadedValue Gets/sets the value that should be used to restore the property.
Owner Gets the object to whom the property belongs.
PropertyInfo (Inherited from Infragistics.Persistence.PropertyPersistenceEventArgs)Gets the PropertyInfo of an object being saved or loaded.
PropertyPath (Inherited from Infragistics.Persistence.PropertyPersistenceEventArgs)Gets the full property path of an object being saved or loaded.
RootOwner (Inherited from Infragistics.Persistence.PropertyPersistenceEventArgs)Gets the root object that is actually being saved or loaded.
SavedValue Gets a string representation of the property that was being stored.
Value Gets the value of the property, if the property was a Value type.
Requirements

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