WinStudio
IWSIDOCollection interface
Returns a Boolean value indicating whether the current object property in a specified IDO collection has been modified.
object.IsCurrentObjectPropertyModified( string )
Part |
Description |
object | Required. The name of a valid IDO collection object. |
string | Required. The name of the object property. |
A return value of:
If the specified IDO collection has focus, use this method. If the specified IDO collection might not have focus, use the IsObjectPropertyModified method.
Sub Main() ReturnValue = "0" If (ThisForm.PrimaryIDOCollection.IsCurrentObjectPropertyModified(GetParameter(0)) = True And ThisForm.PrimaryIDOCollection.GetCurrentObjectProperty(GetParameter(0)) = "3" ) ReturnValue = "1" End If End Sub