WinStudio
IWSIDOCollection interface
Returns a Boolean value indicating whether a specified object in a collection is read-only.
object.IsObjectReadOnly(long)
Part |
Description |
object | Required. The name of a valid IDO collection object. |
long | Required. A long integer indicating the row index number of the object in the collection. |
A return value of:
If the specified IDO collection might not have focus, use this method. If the specified IDO collection has focus, use the IsCurrentObjectReadOnly method.
Sub Main() Application.ShowMessage(ThisForm.PrimaryIDOCollection.IsObjectReadOnly(5)) End Sub