BuilderFactoryExtensions.WebDocumentViewer(BuilderFactory, String) Method
The BuilderFactory class’ extension method required to create a Document Viewer Builder.
Namespace: DevExpress.AspNetCore
Assembly: DevExpress.AspNetCore.Reporting.v24.1.dll
NuGet Package: DevExpress.AspNetCore.Reporting
Declaration
public static WebDocumentViewerBuilder WebDocumentViewer(
this BuilderFactory factory,
string name
)
Parameters
Name | Type | Description |
---|---|---|
factory | BuilderFactory | The BuilderFactory instance that this method extends. |
name | String | An identifier for the element representing a Document Viewer on the page. |
Returns
Type | Description |
---|---|
WebDocumentViewerBuilder | The object required to build a Document Viewer. |
Remarks
Use this extension method to create a Document Viewer Builder and generate an element for a Document Viewer on a page. The element’s identifier is specified using the value passed as the name parameter.
@Html.DevExpress().WebDocumentViewer("DocumentViewer").Height("1000px")
See Also