IContentList::AdjustScore

Ee823859.c++_off(en-US,CS.10).gifEe823859.vb_on(en-US,CS.10).gif

Use this method to adjust the score of an item in the ContentList object by applying a multiplier.

Definition

HRESULT IContentList::AdjustScore(longRowNum,floatMultiplier,BSTRComponent,BSTRDescription);

Parameters

RowNum

[in] A long that contains the position of the item in the ContentList object for which the score is to be adjusted. Positions are counted from zero (0), not from one (1).

Multiplier

[in] A float that contains the value by which the score will be multiplied.

Component

[in,optional] A BSTR that contains an identifier for the pipeline component that is adjusting the score. By convention, this is the Programmatic Identifier (ProgID) of the pipeline component.

Description

[in,optional] A BSTR that contains a description to be appended to the score adjustment tracing string. This string should briefly describe the nature of the adjustment.

Return Values

This method returns an HRESULT indicating whether or not it completed successfully. See the Error Values section for more details.

Error Values

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.

Remarks

The Component and Description parameters are optional. They are ignored unless the TraceMode property is set to True.

This method assumes that the ContentList object has a column of type CLCOL_R4 with the CLCOL_SCORE_COLUMN flag set.

See Also

ContentList Object


All rights reserved.