PageEndSavingArgs

PageEndSavingArgs class

Info for a page ends saving process.

class PageEndSavingArgs extends PageSavingArgs;

Constructors

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

Methods

MethodDescription
getHasMorePages()Gets or sets a value indicating whether having more pages to be output. The default value is true.
setHasMorePages(boolean)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()Current page index, zero based.
getPageCount()Total page count.

constructor(PageSavingArgs)

Constructs from a parent object convertible to this.

constructor(obj: PageSavingArgs);

Parameters:

ParameterTypeDescription
objPageSavingArgsThe parent object.

getHasMorePages()

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

getHasMorePages() : boolean;

setHasMorePages(boolean)

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()

Current page index, zero based.

getPageIndex() : number;

getPageCount()

Total page count.

getPageCount() : number;