IHTMLTable::dataPageSize Property

Sets or retrieves the number of records displayed in a table bound to a data source.

Syntax

HRESULT IHTMLTable::get_dataPageSize(long *p);
HRESULT IHTMLTable::put_dataPageSize(long v);

Parameters

  • p
    Pointer to a variable of type long that receives the number of records in the table.
  • v
    long that specifies the number of records in the table.

Return Value

Returns S_OK if successful, or an error value otherwise.

Remarks

The IHTMLTable2::firstPage and IHTMLTable2::lastPage methods are used to navigate directly to the first and last pages of a databound table, respectively. The IHTMLTable::nextPage and IHTMLTable::previousPage methods are used to navigate sequentially through the pages of a databound table.

See Also

Introduction to Data Binding, IHTMLTable2::firstPage, IHTMLTable2::lastPage, IHTMLTable::nextPage, IHTMLTable::previousPage