English | 日本語
Home > Merge > Merge for Windows > Documentation Contents > IFolderContents Interface

IFolderContents Interface

This interface is implemented by a component that represents the contents of a folder.

Properties

Count

IDL [propget] HRESULT Count([out, retval] long* pValue)
.NET Int32 Count[get]
VB6 Count As Long

The number of files and folders in the collection.

The property is read-only.

Item

IDL [propget] HRESULT Item([in] long nIndex, [out, retval] IFileSystemItem** pValue)
.NET IFileSystemItem get_Item(Int32 nIndex)
VB6 Item(nIndex As Long) As IFileSystemItem

Provides access to the file or folder item at the specified index within the collection.

The property is read-only.

Arguments