Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ASPxClientWebDocumentViewerDocumentReadyEventArgs Class

#Declaration

TypeScript
declare class ASPxClientWebDocumentViewerDocumentReadyEventArgs extends ASPxClientEventArgs

#Remarks

ASPxClientWebDocumentViewerDocumentReadyEventArgs objects are automatically created, initialized and passed to corresponding event handlers.

#Inheritance

ASPxClientEventArgs
ASPxClientWebDocumentViewerDocumentReadyEventArgs

#constructor(documentId, reportId, pageCount)

Initializes a new instance of the ASPxClientWebDocumentViewerDocumentReadyEventArgs class with the specified settings.

#Declaration

TypeScript
constructor(
    documentId: string,
    reportId: string,
    pageCount: number
)

#Parameters

Name Type Description
documentId string

A string that specifies the report document ID. This value is assigned to the ASPxClientWebDocumentViewerDocumentReadyEventArgs.DocumentId field.

reportId string

A string that specifies the report ID. This value is assigned to the ASPxClientWebDocumentViewerDocumentReadyEventArgs.ReportId field.

pageCount number

An integer value that specifies the total number of pages in a report document. This value is assigned to the ASPxClientWebDocumentViewerDocumentReadyEventArgs.PageCount field.

#Properties

#DocumentId Property

Specifies the report document ID.

#Declaration

TypeScript
DocumentId: string

#Property Value

Type
string

#PageCount Property

Specifies the total number of pages in a report document.

#Declaration

TypeScript
PageCount: number

#Property Value

Type
number

#ReportId Property

Specifies the report ID.

#Declaration

TypeScript
ReportId: string

#Property Value

Type
string