ContentList.SetScore

Ee797690.c++_on(en-US,CS.10).gifEe797690.vb_off(en-US,CS.10).gif

Use this method to set a new score for an item in a ContentList object.

Definition

Sub SetScore(RowNum As Long,Score 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 a new score will be set. Positions are counted from zero (0), not from one (1).

Score

A Float that contains the new score.

Component

A String that is intended to contain the name of the pipeline component that is setting the new score. This parameter is optional and is used for score tracing.

Description

A String that is intended to contain the reason that the score is being set; for example, Need of Delivery. This parameter is optional and is used for score tracing.

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.

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

For the sake of uniformity, pipeline components provided with Commerce Server 2000 pass the Programmatic Identifier (ProgID) of the component for the Component parameter.

Example

'strProgID is a string
myContentList.SetScore(123456, 0.5, strProgID, "")

See Also

ContentList Object


All rights reserved.