WinStudio
IWSIDOCollection interface
Enables/Disables the copying of records for the specified IDO collection, or returns a Boolean value indicating whether the record copying is enabled.
object.CopyEnabled = Boolean
Part |
Description |
object | Required. A reference to a valid IDO collection object. |
Boolean | Required. Determines whether copying of records
is enabled.
|
object.CopyEnabled
Part |
Description |
object | Required. A reference to a valid IDO collection object. |
This property enables/disables the Copy option on the Actions menu only. It does not govern the copying of entire collections.
A return value of:
Sub Main() If ThisForm.CurrentIDOCollection.CopyEnabled Then ThisForm.CurrentIDOCollection.CopyEnabled = False Else ThisForm.CurrentIDOCollection.CopyEnabled = True End If End Sub