dbicList Send comments on this topic.
DisplayUserControl Event
See Also 
dbicBase Assembly > Dbi.WinControl Namespace > DbiListControl Class : DisplayUserControl Event

Event fired before a cell is placed into edit mode, allowing the developer to prepare and display their own control for the editing process.

Syntax

Visual Basic (Declaration) 
Public Event DisplayUserControl As DbiListControl.EventDisplayUserControlHandler
C# 
public event DbiListControl.EventDisplayUserControlHandler DisplayUserControl

Event Data

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

PropertyDescription
ColumnIndex The zero-based index of the dbiColumnItem where the editable cell exists.
ColumnItem The dbiColumnItem where the editable cell exists.
Height The height of the cell to be edited.
NodeItem The dbiNodeItem that contains the cell to be edited.
Text The current text of the cell to be edited.
Width The width of the cell to be edited.
X The X coordinate of the cell being edited.
Y The Y coordinate of the cell to be edited.

Remarks

Event is only fired, if the EditType property of the respective column is set to UserControl

Requirements

Target Platforms: Current Windows operating system with .NET 8.

See Also