Leadtools.WinForms Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.8.31
Items Property
See Also 
Leadtools.WinForms Namespace > RasterImageList Class : Items Property




Gets a collection containing all items in the control.

Syntax

Visual Basic (Declaration) 
<BrowsableAttribute(False)>
Public ReadOnly Property Items As RasterImageListItemCollection
Visual Basic (Usage)Copy Code
Dim instance As RasterImageList
Dim value As RasterImageListItemCollection
 
value = instance.Items
C# 
[BrowsableAttribute(false)]
public RasterImageListItemCollection Items {get;}
Managed Extensions for C++ 
[BrowsableAttribute(false)]
public: __property RasterImageListItemCollection* get_Items();
C++/CLI 
[BrowsableAttribute(false)]
public:
property RasterImageListItemCollection^ Items {
   RasterImageListItemCollection^ get();
}

Return Value

A RasterImageListItemCollection that contains all the items in this RasterImageList control.

Example

For an example, refer to RasterImageList.

Remarks

Using the RasterImageListItemCollection returned by this property, you can add items, remove items, and obtain a count of items. For more information on the tasks that can be performed with the items in the collection, refer to RasterImageListItemCollection.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also