Sets Property
The Sets property is a read only property that returns the ISoftUSBPhysicalDescriptorSetList interface.
This property is read-only.
Syntax
HRESULT get_Sets(
[out, retval] ISoftUSBPhysicalDescriptorSetList **ppSets
);
Property Value
Caller-allocated space to hold the ISoftUSBPhysicalDescriptorSetList interface that is returned here. Note that the caller must release the interface.
Error Codes
Sets returns one of the following values:
This property can also return many standard COM return values.
Name | Meaning |
---|---|
S_OK | The operation succeeded. |
E_POINTER | The ppSets parameter was an invalid pointer. |
Examples
The following VBScript code example shows how to get the Sets property.
'Create a physical descriptor
Dim PhysicalDesc:
Set PhysicalDesc = CreateObject("SOFTHIDUSBK.SoftUSBPhysicalDescriptor")
'Get the physical descriptor sets
Dim Sets
Sets = PhysicalDesc.Sets
Send comments about this topic to Microsoft
Build date: 9/21/2010