IFolderContents インターフェイス

On this page:

Description

このインターフェイスはフォルダーの内容を表すもので、コンポーネントによって実装されます。

プロパティ

Count 読み取り専用、IFolderContents

コレクション内のファイルとフォルダーの数。

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

Item 読み取り専用、IFolderContents

コレクション内の指定インデックス位置にあるファイル項目またはフォルダー項目へのアクセスを提供します。

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