ComponentOne ADO.NET DataExtender
C1.C1DataExtender.2 Assembly / C1.C1DataExtender Namespace / C1DataView Class / CalculateColumn Event

In This Topic
    CalculateColumn Event (C1DataView)
    In This Topic
    Occurs when the C1ViewColumn value is being retrieved.
    Syntax
    'Declaration
     
    Public Event CalculateColumn As C1ViewColumnCalculateEventHandler
    public event C1ViewColumnCalculateEventHandler CalculateColumn
    Event Data

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

    PropertyDescription
    Gets the C1ViewColumn object for which a value is being calculated.  
    Gets the C1ViewRow in which the C1ViewColumn value is being calculated.  
    Gets or sets the calculated value of the column.  
    Remarks
    This is the same event as C1DataViewSet.CalculateColumn, see the C1DataViewSet.CalculateColumn event description for details on this event.

    Note that this event is triggered on C1DataView first and then on C1DataViewSet.

    See Also