PageEndSavingArgs

PageEndSavingArgs class

Info for a page ends saving process.

class PageEndSavingArgs extends PageSavingArgs;

Constructors

ConstructorDescription
constructor(PageSavingArgs)Constructs from a parent object convertible to this.

Properties

PropertyTypeDescription
hasMorePagesbooleanGets or sets a value indicating whether having more pages to be output. The default value is true.
pageIndexnumberReadonly. Current page index, zero based.
pageCountnumberReadonly. Total page count.

Methods

MethodDescription
getHasMorePages()@deprecated. Please use the ‘hasMorePages’ property instead. Gets or sets a value indicating whether having more pages to be output. The default value is true.
setHasMorePages(boolean)@deprecated. Please use the ‘hasMorePages’ property instead. Gets or sets a value indicating whether having more pages to be output. The default value is true.
isNull()Checks whether the implementation object is null.
getPageIndex()@deprecated. Please use the ‘pageIndex’ property instead. Current page index, zero based.
getPageCount()@deprecated. Please use the ‘pageCount’ property instead. Total page count.

constructor(PageSavingArgs)

Constructs from a parent object convertible to this.

constructor(obj: PageSavingArgs);

Parameters:

ParameterTypeDescription
objPageSavingArgsThe parent object.

hasMorePages

Gets or sets a value indicating whether having more pages to be output. The default value is true.

hasMorePages : boolean;

pageIndex

Readonly. Current page index, zero based.

pageIndex : number;

pageCount

Readonly. Total page count.

pageCount : number;

getHasMorePages()

@deprecated. Please use the ‘hasMorePages’ property instead. Gets or sets a value indicating whether having more pages to be output. The default value is true.

getHasMorePages() : boolean;

setHasMorePages(boolean)

@deprecated. Please use the ‘hasMorePages’ property instead. Gets or sets a value indicating whether having more pages to be output. The default value is true.

setHasMorePages(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;

getPageIndex()

@deprecated. Please use the ‘pageIndex’ property instead. Current page index, zero based.

getPageIndex() : number;

getPageCount()

@deprecated. Please use the ‘pageCount’ property instead. Total page count.

getPageCount() : number;