IsPropertyQuotable method (WinStudio scripts)
Applies To
IWSIDOCollection interface
Definition
Returns a Boolean value indicating whether an object property in a specified IDO collection requires values to be placed inside quotation marks when they are used in a filter.
Syntax
object.IsPropertyQuotable( string )
Part | Description |
object | Required. A reference to a valid IDO collection object. |
string | Required. The name of the object property. |
Remarks
A return value of:
- TRUE indicates that values for the object property must be placed inside quotation marks when they are used in a filter.
- FALSE indicates that values for the property do not require quotation marks when they are used in a filter.
Example
Sub Main() Dim bIsQuotable As Boolean If ThisForm.PrimaryIDOCollection.IsPropertyQuotable("AccountNo") Then bIsQuotable = True End If End Sub