Version

Search Results

CellDataUpdatingEventArgs Class

Event args for UltraDataSource.CellDataUpdating event. Syntax Example Following code shows some of the information available in CellDataUpdating and CellDataUpdated events and typical usages for these events. For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual Basic a...

CellDataUpdatingEventArgs Class Members

Public Constructors Public Properties

CacheData Property (CellDataUpdatingEventArgs)

Specifies whether to cache the data. Default value is true. Set this to false if you want to prevent the UltraDataSource from keeping the data. If there is some existing data thats cached for the column, it will be cleared. CellDataRequested event will be fired the next time the data for the cell is needed. Syntax...

Column Property (CellDataUpdatingEventArgs)

Gets the column. Syntax Example Following code shows some of the information available in CellDataUpdating and CellDataUpdated events and typical usages for these events. For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual Basic and Visual C#. For specific information...

NewValue Property (CellDataUpdatingEventArgs)

New value of the cell. You can set this to a different value. Syntax Example Following code shows some of the information available in CellDataUpdating and CellDataUpdated events and typical usages for these events. For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual ...

Row Property (CellDataUpdatingEventArgs)

Gets the row. Syntax Example Following code shows some of the information available in CellDataUpdating and CellDataUpdated events and typical usages for these events. For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual Basic and Visual C#. For specific information an...

CellDataUpdatingEventArgs Constructor

Constructor. Syntax Parameters row The rowcolumn The columnnewValue New value of the cell. Example Following code shows some of the information available in CellDataUpdating and CellDataUpdated events and typical usages for these events. For an overview of how to handle events in Visual Basic or Visual C#, see Eve...

CellDataUpdatingEventHandler Delegate

Delegate for CellDataUpdating event. Syntax Parameters sender e Example Following code shows some of the information available in CellDataUpdating and CellDataUpdated events and typical usages for these events. For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual Basic...

DataSourceEventGroups Enumeration

Identifies groups of UltraDataSource specific events. Syntax Members Member Description AfterEvents After events AllEvents All events BeforeEvents Before events Example Following code shows how to disable an individual event or a group of events.