BeforeAddDataBoundRowEventArgs Interface

 

Provides data for the BeforeAddDataBoundRow event.

Namespace:   Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)

[GuidAttribute("15ffd73e-605e-4d8a-8426-4ddbb71a62f1")]
public interface class BeforeAddDataBoundRowEventArgs

NameDescription
System_CAPS_pubpropertyCancel

Gets or sets a value indicating whether the addition of a new row should be canceled.

System_CAPS_pubpropertyItem

Gets the row to be added to the data source.

The BeforeAddDataBoundRow event occurs before a new row is added to a data source that is bound to a ListObject.

The following code example creates a DataTable and a ListObject, and binds the ListObject to the DataTable. It then creates a BeforeAddDataBoundRow event handler that cancels the addition of the new row. To test the event, manually add a new row to the ListObject on sheet 1.

This example is for a document-level customization.

No code example is currently available or this language may not be supported.
Return to top
Show: