WinStudio
IWSIDOCollection interface
Marks the current record in the specified IDO collection as deleted and returns a Boolean value indicating whether the operation was successful.
object.Delete( )
Part |
Description |
object | Required. A reference to an IDO collection object. |
The return value:
The actual deletion does not take place until the IDO collection data is saved. If the current object is marked for deletion already, this method unmarks it.
Sub Main() ThisForm.PrimaryIDOCollection.Delete() End Sub