'Declaration <DescriptionAttribute("Raised when the cell has exited edit mode.")> <CategoryAttribute("Data")> Public Event EditLeft As EditLeftEventHandler
'Usage Dim instance As Cell Dim handler As EditLeftEventHandler AddHandler instance.EditLeft, handler
[Description("Raised when the cell has exited edit mode.")] [Category("Data")] public event EditLeftEventHandler EditLeft
Event Data
The event handler receives an argument of type EditLeftEventArgs containing data related to this event. The following EditLeftEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Commited | Gets a boolean value indicating if the modifications have been committed to the cell. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also