Click or drag to resize

ImageList Class (Typed)

X#
Create an image list.
Inheritance Hierarchy
Object
  VObject
    ImageList
      ButtonImageList

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax
 CLASS ImageList INHERIT VObject
Request Example View Source

The ImageList type exposes the following members.

Constructors
  NameDescription
Public methodImageList
Construct an image list object.
Top
Properties
  NameDescription
Public propertyImageCount
The number of images in the ImageList object.
Top
Functions
  NameDescription
Public methodAdd
Add an icon or bitmap to the image list.
Public methodAddMask
Adds an image or images to an image list and generates a mask from the specified bitmap.
Public methodBeginDrag
Begin a drag operation on an image list.
Public methodCreateOverlayImage
Create an overlay image from an image in an image list.
Public methodDestroy
Free memory resources allocated for a VObject object and its derived objects.
(Inherited from VObject.)
Public methodDragEnter
Starts a drag-and-drop operation at the given position in the given window.
Public methodDragLeave
Ends a drag-and-drop operation.
Public methodDragMove
Drag an image list to the specified position.
Public methodEndDrag
End a drag operation on an image list.
Public methodHandle
Return the Windows handle of the image list, which can be used in Windows.
Top
Operators
Globals and Defines
  NameDescription
Public fieldoCargo
Cargo slot.
(Inherited from VObject.)
Top
Remarks
An image list is an object that is essentially a collection of icons and/or bitmaps of the same size. Image lists provide a way to manage icons and bitmaps in groups rather than as individual objects. They are typically used by tab, list view, and tree view controls, which refer to particular images in the list by their sequential index. Image lists are used by controls for image manipulation; as a result, methods such as BeginDrag(), DragMove(), EndDrag(), and Handle() are used by the system and should generally not be used directly.
See Also