CaseConvert Property
  

Set / Gets the EDIT controls family (TEXTBOX & EDITBOX) the 'CaseConvert' property

SYNTAX
Pseudo-OOP:

Set:
<ParentWindowName>.<ControlName>.CaseConvert := cCase

Get:
<ParentWindowName>.<ControlName>.CaseConvert --> cCase

Function syntax:

Set:
SetProperty ( <ParentWindowName>,<ControlName>, CaseConvert , cCase)

Get:
GetProperty ( <ParentWindowName>, <ControlName>, CaseConvert ) --> cCase

where
cCase may be 'UPPER', 'LOWER' or 'NONE'.
Usage:
            
Form_1.Edit_1.CaseConvert := "LOWER"
            
Form_1.Edit_1.Value := "New Edit Value"