IContentList::get_Threshold, put_Threshold

Ee823931.c++_off(en-US,CS.10).gifEe823931.vb_on(en-US,CS.10).gif

The Threshold property is a read/write floating point number. This number contains a threshold score that items must meet or exceed to be included in the ActiveRows collection property.

Definition

Get method:

HRESULT IContentList::get_Threshold(float*Threshold);

Put method:

HRESULT IContentList::put_Threshold(floatThreshold);

Parameters

Threshold

[in] When putting the property, a float that contains the new threshold score.
[out,retval] When getting the property, a pointer to a float used to return the threshold score.

Return Values

These methods return an HRESULT indicating whether or not they 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.

See Also

ContentList Object


All rights reserved.