ISComboBox.CharCase

Description

The case of the text in the specified combo box. The property is not accessible in the Object Inspector.

Syntax

object.CharCase

Part Attribute Type Description
object Required
The object always implements the ISComboBox interface

Return Value

TSCharCase

Example

Display some information about the specified combo box, including the case of the text in the combo box.

Dim aComboBox
Dim aComboBoxInfo

Set aComboBox = Form.Controls_("cmbInform")
aComboBoxInfo =_
  "Caption: " & aComboBox.Caption & vbNewLine &_ 
  "ShortName: " & aComboBox.ShortName & vbNewLine &_
  "ComboBox Char Case: " & aComboBox.CharCase
 
Profile.MsgBox(aComboBoxInfo)  
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0