Back to Devexpress

IBrickNode Interface

xtrareports-js-devexpress-dot-reporting-dot-viewer-dot-utils-28fe8273.md

latest2.3 KB
Original Source

IBrickNode Interface

Provides information about a visual brick used to render a report control to construct a document in the Web Document Viewer.

Declaration

ts
export interface IBrickNode

Remarks

See the ASPxClientWebDocumentViewer.PreviewClick event description for more information.

Properties

accessibleDescription Property

Declaration

ts
accessibleDescription: string

Property Value

Type
string

content Property

Specifies a brick’s content.

Declaration

ts
content: Array<DevExpress.Reporting.IKeyValuePair<any>>

Property Value

TypeDescription
IKeyValuePair<any>[]

An array that stores content keys along with the corresponding contents.

|

height Property

Specifies a brick’s height.

Declaration

ts
height: number

Property Value

TypeDescription
number

The brick height.

|

left Property

Specifies a brick’s left horizontal coordinate.

Declaration

ts
left: number

Property Value

TypeDescription
number

The brick’s left horizontal coordinate.

|

Specifies navigation settings of the current brick.

Declaration

ts
navigation?: IBrickNodeNavigation

Property Value

TypeDescription
IBrickNodeNavigation

The brick’s navigation settings.

|

rtl Property

Specifies whetherthe right-to-left feature is enabled for a brick.

Declaration

ts
rtl: boolean

Property Value

TypeDescription
boolean

true , if the right-to-left feature is enabled; otherwise, false.

|

top Property

Specifies a brick’s top vertical coordinate.

Declaration

ts
top: number

Property Value

TypeDescription
number

The brick’s top vertical coordinate.

|

width Property

Specifies a brick’s width.

Declaration

ts
width: number

Property Value

TypeDescription
number

The brick width.

|