Skip to main content
A newer version of this page is available. .

PdfViewer.CreateRibbon() Method

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

Namespace: DevExpress.XtraPdfViewer

Assembly: DevExpress.XtraPdfViewer.v19.2.dll

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