Skip to main content

PdfViewer.CreateRibbon() Method

Creates a Ribbon tab with actions specific to the PdfViewer control.

Namespace: DevExpress.XtraPdfViewer

Assembly: DevExpress.XtraPdfViewer.v23.2.dll

NuGet Package: DevExpress.Win.PdfViewer

Declaration

public void CreateRibbon()

Remarks

The code sample below creates a ribbon UI for the PDF Viewer:

public Form1()
{
    InitializeComponent();
    this.Controls.Add(pdfViewer);
    pdfViewer.CreateRibbon();
}
See Also