Package com.ms.com.directX |
![]() Previous |
![]() Microsoft Packages |
![]() Index |
![]() Next |
Applications use the methods of the d3drmDeviceArray class to organize device objects.
public class d3drmDeviceArray implements Id3drmDeviceArray { public void InternalSetObject(IUnknown lpdd); public IUnknown InternalGetObject(); public int GetSize(); public d3drmDevice GetElement(int index); }
There are the following methods:
GetElement |
GetSize |
The d3drmDeviceArray object is obtained by calling the GetDevices method.
public int GetSize();Returns the number of d3drmDevice objects associated with this object.
Return Value:
Returns the number of objects.
public d3drmDevice GetElement(int index);Returns one of the d3drmDevice objects associated with this object.
Return Value:
Returns the d3drmDevice object if successful; null otherwise.
Parameter Description index Identifies the object to return. Must be a value in the range 0 to one less than the number returned by the GetSize method.