ComponentOne TileControl for WinForms
C1.Win.C1TileControl.4.5.2 Assembly / C1.Win.C1Tile Namespace / C1TileControl Class / FormatValue Event

In This Topic
    FormatValue Event (C1TileControl)
    In This Topic
    Occurs when a data value has to be mapped to a tile property.
    Syntax
    '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.

    PropertyDescription
    Gets the destination type for the Value property.  
    Gets the data item under consideration.  
    Gets the PropertyMapping object.  
    Gets the property of the Tile object that is a destination for mapping.  
    Gets or sets a value that will be assigned to the property of a Tile object.  
    See Also