WinStudio
IWSIDOCollection interface
Enables/Disables the ability to delete records in a specified IDO collection, or returns a Boolean value indicating whether deletion is enabled for the collection.
object.DeleteEnabled = Boolean
Part |
Description |
object | Required. A reference to a valid IDO collection object. |
Boolean | Required. Determines whether deletion of records
is enabled or disabled:
|
object.DeleteEnabled
Part |
Description |
object | Required. A reference to a valid IDO collection object. |
A return value of:
Sub Main() If ThisForm.CurrentIDOCollection.DeleteEnabled Then ThisForm.CurrentIDOCollection.DeleteEnabled = False Else ThisForm.CurrentIDOCollection.DeleteEnabled = True End If End Sub