Back to Devexpress

IDocumentOperationResult Interface

xtrareports-js-devexpress-dot-reporting-dot-viewer-dot-utils-030525d6.md

latest1.3 KB
Original Source

IDocumentOperationResult Interface

Provides information about the result of preforming a custom document operation on the client side.

Declaration

ts
export interface IDocumentOperationResult

Properties

customData Property

Specifies custom data associated with the performed document operation.

Declaration

ts
customData?: string

Property Value

TypeDescription
string

A string containing information associated with the document operation.

|

documentId Property

Specifies the document ID.

Declaration

ts
documentId: string

Property Value

TypeDescription
string

A string that specifies the document ID.

|

message Property

Specifies the error message to display if performing a document operation fails.

Declaration

ts
message?: string

Property Value

TypeDescription
string

A string specifying the text of the error message.

|

succeeded Property

Specifies whether a document operation has been successfully performed.

Declaration

ts
succeeded: boolean

Property Value

TypeDescription
boolean

true , if the document operation has been successfully performed; otherwise, false.

|