|
|
Visits:
2310
(21 on line)
|
Last Update: Dec 21, 2003
|
|
|
|
| | |
| Description Inheritance Example Properties Methods |
| |
| Description |
The TComboFilter5 Object is a special kind of a combo box where the list of items gets
reduced as the user type characters in the combo to only those items containing the typed characters.
The combo drop down list displays automatically as the user types characters in the combo.
This object is mostly used when you need a combo with many items. It makes it much easier for the
user to select the right item. |
| Description Inheritance Example Properties Methods |
| |
| Inheritance |
Inherits from: TCombo5 TObject5 |
| Description Inheritance Example Properties Methods |
| |
| Example |
| |
 |
| |
The above form is generated by the following APL+Win Objects code: |
'ff'Świ'*Create' 'TForm5'('*size'300 400)('*caption' 'TComboFilter5 Example')
'ff.cbf'Świ'*Create' 'TComboFilter5'('wherelc'5 5 Đ 200)('list'(Śnl 3))('*style'16)
'ff'Świ'Show'
'ff.cbf'Świ'*Create' 'TComboFilter5'('wherelc'5 5 Đ 200)('list'(Śnl 3))('*style'16)('casesensitive'0)
'ff'Świ'Show'
|
| |
| Description Inheritance Example Properties Methods |
| |
| Properties |
| |
|
| casesensitive |
Description: Get or set the case sensitiviness property
Syntax: 'obj' Świ 'casesensitive' {boolean}
boolean: 0=not case sensitive; 1=case sensitive
Example:
'ff.cbf' Świ 'casesensitive'1 |
| class |
Description: Return current object class
Syntax: class„'obj' Świ 'class' |
| help |
Example:
0 0˝'ff' Świ '*Create' 'TForm5' ('*size'300 400) ('*caption' 'TComboFilter5 Example')
0 0˝'ff.cbf' Świ '*Create' 'TComboFilter5' ('wherelc'5 5 Đ 200) ('list' (Śnl 3)) ('*style'16)
'ff' Świ 'Show'
0 0˝'ff.cbf' Świ '*Create' 'TComboFilter5' ('wherelc'5 5 Đ 200) ('list' (Śnl 3)) ('*style'16) ('casesensitive'0)
'ff' Świ 'Show' |
| list |
Description: Get or Set the Combo list and stores it in ‘‘list UDP
Syntax: 'obj' Świ 'list' {list}
list: a character matrix or nested vector of char vectors
Example:
'ff.cbf' Świ 'list' (Śsplit Śnl 3) |
| where |
Description: Same as standard 'where' property except saves original value in ‘‘where UDP
Syntax: {where}„'obj' Świ 'where' {where}
where: 4-elements integer vector (pixel coordinates)
Example:
'ff.cbf' Świ 'where'5 5 200 220 |
|
| Description Inheritance Example Properties Methods |
| |
| Methods |
| |
|
| New |
Description: Create a new instance of TComboFilter5
Example:
'obj' Świ '*Create' 'TComboFilter5'
|
| Refresh |
Description: Resets the Combo list to its original content
Syntax: 'obj' Świ 'Refresh'
Example:
'ff.cbf' Świ 'Refresh' |
|
| Description Inheritance Example Properties Methods |
| |
|