IProduct3::get_RelatedCategories Property [C++]

The RelatedCategories property is a read-only Recordset object that contains the names of categories that are related to this product.

Definition

[C++]

HRESULT IProduct3::get_RelatedCategories(_Recordset**RelatedCategories);

[Visual Basic]

Property RelatedCategories As Recordset

Parameters

  • RelatedCategories[C++]
    [out, retval] A _Recordset object used to return the related categories.

[Visual Basic] None.

[C++]

Return Values

[C++] This method returns an HRESULT indicating whether it completed successfully. See the Error Values section for more details.

Error Values

[C++] This method returns S_OK (0x00000000) to indicate success and standard COM HRESULT error values to indicate failure. For more information about standard COM errors, see Standard COM Errors. Additional information may be available using the global Err object, which can be accessed using the API function GetErrorInfo. In particular, the GetDescription method of the IErrorInfo interface may return a text description of the error.

[Visual Basic] This property sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to standard COM error values to indicate failure. For more information about standard COM errors, see Standard COM Errors. Additional information may be available using the global Err object. In particular, the Description property may contain a text description of the error.

The following table describes the custom COM errors this method can return.

Constant Value Description
E_CAT_INVALID_RS_POINTER

[C++] 0x889800B7

[Visual Basic] &H889800B7

The recordset pointer that you specified is invalid.

Remarks

[C++] The RelatedCategories parameter contains valid data only if the property was accessed successfully.

[Visual Basic] The RelatedCategories property contains valid data only if it was accessed successfully.

The returned recordset contains one column for each relationship present.

The returned recordset contains the fields listed in the following table.

Field Data Type Description
CategoryName String
Maximum of 128 characters
Name of the category.
RelationshipName String
Maximum of 128 characters
Name of the relationship.
RelationshipDescription String
Maximum of 256 characters
Description of the relationship in the current language of the catalog.
TargetCatalog String
Maximum of 100 characters
Name of the catalog containing the related category.

For more information about memory ownership issues related to COM property and method parameters, see Managing COM Parameter Memory.

See Also

[C++]Product Object

[Visual Basic]Product Object

[C++]IProduct3::get_RelatedProducts

[Visual Basic]Product.RelatedProducts

[C++]IProduct3::AddRelationshipToCategory

[Visual Basic]Product.AddRelationshipToCategory

[C++]IProduct3::SetRelatedCategories

[Visual Basic]Product.SetRelatedCategories

Copyright © 2005 Microsoft Corporation.
All rights reserved.