IDSFDevice::Children Property

The Children property gets a collection of devices that are children of the device.

This property is read-only.

Syntax

HRESULT get_Children(
  [out, retval]  DSFDevices *ppDSFDevices
);

Property Value

Caller-allocated space to hold the collection of children devices.

Error Codes

Children returns S_OK if the operation succeeds or E_POINTER if the ppDSFDevices parameter is not a valid pointer.

Remarks

The Children property is typically used only for bus devices to represent devices that are attached to the bus.

Examples

The following VBScript code example shows how to search the Children property for a known object.

Private Function FindChildDevice(DSFDevice, SearchObjectGUID)

    Dim DevSought   : Set DevSought = Nothing
    Dim Dev         : Set Dev = Nothing

    For Each Dev in DSFDevice.Children
        If Dev.HasObject(SearchObjectGUID) Then
            Set DevSought = Dev
        End If
    Next

    Set FindChildDevice = DevSought

End Function

See Also

IDSFDevice

 

 

Send comments about this topic to Microsoft

Build date: 9/21/2010