Share via


ContentList.AdjustScore

Ee797638.c++_on(en-US,CS.10).gifEe797638.vb_off(en-US,CS.10).gif

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

Definition

Sub AdjustScore(RowNum As Long,Multiplier As Float,Component As String,Description As String)

Parameters

RowNum

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

A Float that contains the value by which the score will be multiplied.

Component

An optional String that contains an identifier for the pipeline component that is adjusting the score. By convention, this is the ProgID of the pipeline component.

Description

An optional String 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

None.

Error Values

This method 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.

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.

Example

myContentList.AdjustScore 1, 1.25

See Also

ContentList Object


All rights reserved.