'Declaration
Public Event FormatValue As EventHandler(Of FormatValueEventArgs)
public event EventHandler<FormatValueEventArgs> FormatValue
Event Data
The event handler receives an argument of type FormatValueEventArgs containing data related to this event. The following FormatValueEventArgs properties provide information specific to this event.
Property | Description |
---|---|
DestinationType | Gets the destination type for the Value property. |
Item | Gets the data item under consideration. |
Mapping | Gets the PropertyMapping object. |
TileProperty | Gets the property of the Tile object that is a destination for mapping. |
Value | Gets or sets a value that will be assigned to the property of a Tile object. |
See Also