WinStudio

IsPropertyUppercase Method

Applies To

IWSIDOCollection interface

Definition

Returns a Boolean value indicating whether an object property has the Uppercase attribute set in the IDO.

Syntax

object.IsPropertyUppercase( 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:

Example

Sub Main()
   Dim bIsUppercase As Boolean
   If ThisForm.PrimaryIDOCollection.IsPropertyUppercase("AccountNo") Then
       bIsUppercase = True
   End If
End Sub