IContentList::get_RowLimit, put_RowLimit

Ee810650.c++_off(en-US,CS.10).gifEe810650.vb_on(en-US,CS.10).gif

The RowLimit property is a read/write number that specifies the maximum number of rows that the object should select for the ActiveRows property.

Definition

Get method:

HRESULT IContentList::get_RowLimit(long*RowLimit);

Put method:

HRESULT IContentList::put_RowLimit(longRowLimit);

Parameters

RowLimit

[in] When putting the property, a long that specifies the row limit.
[out,retval] When getting the property, a pointer to a long used to return the row limit.

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

IContentList::get_ActiveRows


All rights reserved.