| AllowImages |
Allow images to be displayed (use the OnOwnerDraw event and the ListTag/ListTagObject to save pictures if you want) |
| BeginUpdate / EndUpdate |
permits you to start a long-time update on the control (for example by adding 1000 elements) without sending out many and many events. So it is fast! |
| HScroll |
permits you to assign an horizontal scroll bar to the list |
| IconDim |
represents the standard size of the item image |
| IsInIME |
You can use this property for knowing if the KeyPress, KeyDown and KeyUp events have been raised by the active IME window associated to your control. By using this property in the KeyPress event you can avoid the IME text. See here. |
| ListTag / ItemData |
returns the tag of a specified item (this can be also an object, use the IsObject VB6 internal function to know if it is an object or any other thing) |
| ManualStart |
Permits you to start the control manually. This method is useful when using this control into another usercontrol to prevent bad iterations. See this page. |
| ScrollOnMouseWheel |
should the control scroll vertically when a mousewheel event occurs? |
| SelCount |
returns the number of selected items (when using Multi selection) |
| Sorted / MultiSelect |
available at runtime ;-) |
| Style |
Standard / Check available at run-time |
| TrapTabKey |
permits you to trap the tab character |