Item Property

 

Description

 

Retrieves a reference to the IDrive interface of the specified key.

 

PowerBASIC Syntax

 

PROPERTY GET Item ( _

BYVAL vKey AS VARIANT _

) AS IDrive

 

Arguments

 

vKey

VARIANT. Key to retrieve.

 
Return Value

 

IDispatch. Reference to a IDrive interface.

 

Example [PowerBASIC]

 

#INCLUDE "windows.inc"

#INCLUDE "scrrun.inc"

 

DIM fso AS IFileSystem

DIM pDrives AS IDriveCollection

DIM pDrive AS IDrive

 

' Create an instance of the FileSystemObject

fso = NEWCOM "Scripting.FileSystemObject"

' Get a reference to the IDrives collection

pDrives = fso.GetDrives

' Get a reference to the IDrive interface for the drive C

pDrive = pDrives.Item("C:")

 

Valid XHTML 1.0 Transitional