# GrapeCity.ActiveReports.Viewer.Wpf.Viewer

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer" class="text-break">Viewer Class
</h1>
  <div class="markdown level0 summary"><p>Represents the WPF Viewer.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.threading.dispatcherobject">DispatcherObject</a></div>
    <div class="level2"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.dependencyobject">DependencyObject</a></div>
    <div class="level3"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.media.visual">Visual</a></div>
    <div class="level4"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.uielement">UIElement</a></div>
    <div class="level5"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.frameworkelement">FrameworkElement</a></div>
    <div class="level6"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.control">Control</a></div>
    <div class="level7"><span class="xref">Viewer</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.media.animation.ianimatable">IAnimatable</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.iframeworkinputelement">IFrameworkInputElement</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.iinputelement">IInputElement</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.isupportinitialize">ISupportInitialize</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.markup.iqueryambient">IQueryAmbient</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.idisposable">IDisposable</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.html">GrapeCity.ActiveReports.Viewer.Wpf</a></h6>
  <h6><strong>Assembly</strong>: MESCIUS.ActiveReports.Viewer.Wpf.dll</h6>
  <h5 id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[ToolboxBitmap(typeof(WpfResources), &quot;GrapeCity.ActiveReports.Viewer.Wpf.Viewer.bmp&quot;)]
[TemplatePart(Name = &quot;Sidebar&quot;, Type = typeof(TabControl))]
[TemplatePart(Name = &quot;TocPanel&quot;, Type = typeof(TocPanel))]
[TemplatePart(Name = &quot;ThumbnailPanel&quot;, Type = typeof(ThumbnailPanel))]
[TemplatePart(Name = &quot;ViewerBorder&quot;, Type = typeof(Border))]
[TemplatePart(Name = &quot;Toolbar&quot;, Type = typeof(MainToolbar))]
[TemplatePart(Name = &quot;ReportGrid&quot;, Type = typeof(Grid))]
[TemplatePart(Name = &quot;SecondaryViewRow&quot;, Type = typeof(RowDefinition))]
[TemplatePart(Name = &quot;SecondaryView&quot;, Type = typeof(ReportViewer))]
[TemplatePart(Name = &quot;ViewSplitter&quot;, Type = typeof(GridSplitter))]
[TemplatePart(Name = &quot;PrimaryView&quot;, Type = typeof(ReportViewer))]
public class Viewer : Control, IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IQueryAmbient, IDisposable</code></pre>
  </div>
  <h5 id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>The Viewer control allows displaying and interacting with reports in a WPF application.</p>
</div>
  <h5 id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_examples"><strong>Examples</strong></h5>
  <p>The following example shows how to create a Viewer instance in XAML:</p>
<pre><code class="lang-csharp">&lt;Window x:Class="MyNamespace.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:viewer="clr-namespace:GrapeCity.ActiveReports.Viewer.Wpf;assembly=GrapeCity.ActiveReports.Viewer.Wpf"
        Title="MainWindow" Height="450" Width="800"&gt;
    &lt;Grid&gt;
        &lt;viewer:Viewer x:Name="reportViewer" /&gt;
    &lt;/Grid&gt;
&lt;/Window&gt;</code></pre>
<p>The following example shows how to load a report into the Viewer in code-behind:</p>
<pre><code class="lang-csharp">public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        reportViewer.LoadDocument("path/to/your/report.rdlx");
    }
}</code></pre>
<p>For more information on customizing the WPF Viewer, see the
<a href="https://developer.mescius.com/activereportsnet/docs/latest/online/devs-customize-wpf-viewer.html">
documentation page</a>.</p>

  <h3 id="constructors">Constructors
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer__ctor" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.#ctor">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.-ctor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer__ctor">Viewer()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.html">Viewer</a> class.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="fields">Fields
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_AllowSplitterProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.AllowSplitterProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.AllowSplitterProperty.html">AllowSplitterProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.AllowSplitter.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_AllowSplitter">AllowSplitter</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkBackColorProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkBackColorProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkBackColorProperty.html">HyperlinkBackColorProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkBackColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkBackColor">HyperlinkBackColor</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkForeColorProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkForeColorProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkForeColorProperty.html">HyperlinkForeColorProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkForeColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkForeColor">HyperlinkForeColor</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkUnderlineProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkUnderlineProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkUnderlineProperty.html">HyperlinkUnderlineProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkUnderline.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkUnderline">HyperlinkUnderline</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_MultiplePageColsProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageColsProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageColsProperty.html">MultiplePageColsProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageCols.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_MultiplePageCols">MultiplePageCols</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_MultiplePageRowsProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageRowsProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageRowsProperty.html">MultiplePageRowsProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageRows.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_MultiplePageRows">MultiplePageRows</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PagesBackColorProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PagesBackColorProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PagesBackColorProperty.html">PagesBackColorProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PagesBackColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PagesBackColor">PagesBackColor</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PreviewPagesProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PreviewPagesProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PreviewPagesProperty.html">PreviewPagesProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PreviewPages.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PreviewPages">PreviewPages</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PrintingSettingsProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PrintingSettingsProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PrintingSettingsProperty.html">PrintingSettingsProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <span class="xref">GrapeCity.ActiveReports.Viewer.Wpf.Viewer.DesignPrintingSettings</span> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_RepositionPageProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.RepositionPageProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.RepositionPageProperty.html">RepositionPageProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.RepositionPage.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_RepositionPage">RepositionPage</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ScrollbarEnabledProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ScrollbarEnabledProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ScrollbarEnabledProperty.html">ScrollbarEnabledProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ScrollbarEnabled.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ScrollbarEnabled">ScrollbarEnabled</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SearchResultsBackColorProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsBackColorProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsBackColorProperty.html">SearchResultsBackColorProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsBackColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SearchResultsBackColor">SearchResultsBackColor</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SearchResultsForeColorProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsForeColorProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsForeColorProperty.html">SearchResultsForeColorProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsForeColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SearchResultsForeColor">SearchResultsForeColor</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SourceFormatProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SourceFormatProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SourceFormatProperty.html">SourceFormatProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SourceFormat.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SourceFormat">SourceFormat</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SourceProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SourceProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SourceProperty.html">SourceProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Source.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Source">Source</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SplitViewProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SplitViewProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SplitViewProperty.html">SplitViewProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SplitView.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SplitView">SplitView</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_TargetViewProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.TargetViewProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.TargetViewProperty.html">TargetViewProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.TargetView.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_TargetView">TargetView</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_UseHyperlinkSettingsProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.UseHyperlinkSettingsProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.UseHyperlinkSettingsProperty.html">UseHyperlinkSettingsProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.UseHyperlinkSettings.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_UseHyperlinkSettings">UseHyperlinkSettings</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ViewTypeProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ViewTypeProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ViewTypeProperty.html">ViewTypeProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ViewType.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ViewType">ViewType</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ZoomProperty" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ZoomProperty">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ZoomProperty.html">ZoomProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Zoom.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Zoom">Zoom</a> dependency property.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_AllowSplitter" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.AllowSplitter">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.AllowSplitter.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_AllowSplitter">AllowSplitter</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the user is allowed to split the view.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_AutoBackgroundColor" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.AutoBackgroundColor">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.AutoBackgroundColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_AutoBackgroundColor">AutoBackgroundColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether the viewer should fill the entire view area with the report page background color.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_CanExport" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.CanExport">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.CanExport.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_CanExport">CanExport</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether export is permitted.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_CurrentPage" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.CurrentPage">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.CurrentPage.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_CurrentPage">CurrentPage</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the number of the current document page displayed in the viewer. The page numbering is 1-based.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Document" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Document">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Document.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Document">Document</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the section report document displayed in the viewer.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_GalleyMode" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.GalleyMode">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.GalleyMode.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_GalleyMode">GalleyMode</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets GalleyMode of report</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_History" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.History">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.History.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_History">History</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the history API for manipulating the viewer's history.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkBackColor" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkBackColor">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkBackColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkBackColor">HyperlinkBackColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the hyperlinks background color in the displayed document.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkForeColor" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkForeColor">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkForeColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkForeColor">HyperlinkForeColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the hyperlinks text color in the displayed document.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkUnderline" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkUnderline">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperlinkUnderline.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperlinkUnderline">HyperlinkUnderline</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether the hyperlinks text should be underlined in the displayed document.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_MultiplePageCols" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageCols">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageCols.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_MultiplePageCols">MultiplePageCols</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the number of pages displayed horizontally when the viewer is in MultiPageMode.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_MultiplePageRows" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageRows">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.MultiplePageRows.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_MultiplePageRows">MultiplePageRows</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the number of pages displayed vertically when the viewer is in MultiPageMode.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PagesBackColor" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PagesBackColor">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PagesBackColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PagesBackColor">PagesBackColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates the background color of the report pane.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PreviewPages" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PreviewPages">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PreviewPages.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PreviewPages">PreviewPages</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the number of pages to load. Pass a value less than or equal to 0 to load all pages.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PrintingSettings" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PrintingSettings">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.PrintingSettings.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_PrintingSettings">PrintingSettings</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value representing the printing settings for the currently displayed report.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_RepositionPage" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.RepositionPage">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.RepositionPage.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_RepositionPage">RepositionPage</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the viewer will reposition the view to the top of the page when a user goes to another page after scrolling downward in a page.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ScrollbarEnabled" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ScrollbarEnabled">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ScrollbarEnabled.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ScrollbarEnabled">ScrollbarEnabled</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the scrollbars are enabled within the report pane.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SearchResultsBackColor" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsBackColor">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsBackColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SearchResultsBackColor">SearchResultsBackColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the background color of the search result.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SearchResultsForeColor" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsForeColor">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SearchResultsForeColor.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SearchResultsForeColor">SearchResultsForeColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the text color of the search result.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Sidebar" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Sidebar">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Sidebar.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Sidebar">Sidebar</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the sidebar API for manipulating the sidebar panels.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Source" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Source">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Source.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Source">Source</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the local or remote URI of the report to display in the Viewer.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SourceFormat" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SourceFormat">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SourceFormat.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SourceFormat">SourceFormat</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the format of the report URI.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SplitView" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SplitView">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SplitView.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SplitView">SplitView</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the viewer is split into two views.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_TableOfContents" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.TableOfContents">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.TableOfContents.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_TableOfContents">TableOfContents</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the table of contents panel API.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_TargetView" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.TargetView">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.TargetView.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_TargetView">TargetView</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that specifies the current target view when SplitView is enabled.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_UseHyperlinkSettings" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.UseHyperlinkSettings">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.UseHyperlinkSettings.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_UseHyperlinkSettings">UseHyperlinkSettings</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether to apply the hyperlink settings when hyperlinks are displayed in the Viewer.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ViewType" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ViewType">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ViewType.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ViewType">ViewType</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines how the viewer shows pages (single/multi/continuous).</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Zoom" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Zoom">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Zoom.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Zoom">Zoom</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the viewer's zoom level.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Dispose" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Dispose">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Dispose.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Dispose">Dispose()</a>
        </td>
        <td class="markdown level1 summary"><p>Releases the resources used by the <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.html">Viewer</a> control.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Export_GrapeCity_ActiveReports_Export_IDocumentExport_System_IO_FileInfo_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Export(GrapeCity.ActiveReports.Export.IDocumentExport,System.IO.FileInfo)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Export.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Export_GrapeCity_ActiveReports_Export_IDocumentExport_System_IO_FileInfo_">Export(IDocumentExport, FileInfo)</a>
        </td>
        <td class="markdown level1 summary"><p>Exports the specified page range of the currently loaded report to the specified file by using the specified export filter.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Export_GrapeCity_ActiveReports_Export_IDocumentExport_System_IO_FileInfo_System_String_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Export(GrapeCity.ActiveReports.Export.IDocumentExport,System.IO.FileInfo,System.String)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Export.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Export_GrapeCity_ActiveReports_Export_IDocumentExport_System_IO_FileInfo_System_String_">Export(IDocumentExport, FileInfo, string)</a>
        </td>
        <td class="markdown level1 summary"><p>Exports the specified page range of the currently loaded report to the specified file by using the specified export filter.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Export_GrapeCity_ActiveReports_Export_IDocumentExport_System_IO_Stream_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Export(GrapeCity.ActiveReports.Export.IDocumentExport,System.IO.Stream)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Export.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Export_GrapeCity_ActiveReports_Export_IDocumentExport_System_IO_Stream_">Export(IDocumentExport, Stream)</a>
        </td>
        <td class="markdown level1 summary"><p>Exports the specified page range of the currently loaded report to the specified stream by using the specified export filter.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Export_GrapeCity_ActiveReports_Export_IDocumentExport_System_IO_Stream_System_String_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Export(GrapeCity.ActiveReports.Export.IDocumentExport,System.IO.Stream,System.String)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Export.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Export_GrapeCity_ActiveReports_Export_IDocumentExport_System_IO_Stream_System_String_">Export(IDocumentExport, Stream, string)</a>
        </td>
        <td class="markdown level1 summary"><p>Exports the specified page range of the currently loaded report to the specified stream by using the specified export filter.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HandleError_System_Exception_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HandleError(System.Exception)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HandleError.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HandleError_System_Exception_">HandleError(Exception)</a>
        </td>
        <td class="markdown level1 summary"><p>Handles runtime error on the viewer.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_ActiveReports_Document_PageDocument_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument(GrapeCity.ActiveReports.Document.PageDocument)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_ActiveReports_Document_PageDocument_">LoadDocument(PageDocument)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the specified page document.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_ActiveReports_Document_SectionDocument_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument(GrapeCity.ActiveReports.Document.SectionDocument)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_ActiveReports_Document_SectionDocument_">LoadDocument(SectionDocument)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the specified section document.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_ActiveReports_PageReport_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument(GrapeCity.ActiveReports.PageReport)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_ActiveReports_PageReport_">LoadDocument(PageReport)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the specified page report.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_ActiveReports_SectionReport_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument(GrapeCity.ActiveReports.SectionReport)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_ActiveReports_SectionReport_">LoadDocument(SectionReport)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the specified section report.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_Viewer_Common_IDocumentLoader_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument(GrapeCity.Viewer.Common.IDocumentLoader)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_GrapeCity_Viewer_Common_IDocumentLoader_">LoadDocument(IDocumentLoader)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads a report from the specified <a class="xref" href="../MESCIUS.ActiveReports.Viewer.Common/GrapeCity.Viewer.Common.IDocumentLoader.html">IDocumentLoader</a> parameter.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_System_IO_Stream_GrapeCity_Viewer_Common_DocumentFormat_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument(System.IO.Stream,GrapeCity.Viewer.Common.DocumentFormat)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_System_IO_Stream_GrapeCity_Viewer_Common_DocumentFormat_">LoadDocument(Stream, DocumentFormat)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the document from a stream.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_System_String_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument(System.String)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadDocument.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadDocument_System_String_">LoadDocument(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads a report from the specified file path.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_OnAction_System_Object_GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ActionEventArgs_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.OnAction(System.Object,GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ActionEventArgs)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.OnAction.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_OnAction_System_Object_GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ActionEventArgs_">OnAction(object, ActionEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Helper method fires RenderingCompleted event when appropriate.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_OnApplyTemplate" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.OnApplyTemplate">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.OnApplyTemplate.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_OnApplyTemplate">OnApplyTemplate()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes viewer panels.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Print_GrapeCity_Viewer_Common_PrintingSettings_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Print(GrapeCity.Viewer.Common.PrintingSettings)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Print.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Print_GrapeCity_Viewer_Common_PrintingSettings_">Print(PrintingSettings)</a>
        </td>
        <td class="markdown level1 summary"><p>Prints the currently opened report.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Print_System_Boolean_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Print(System.Boolean)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Print.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Print_System_Boolean_">Print(bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Prints the currently opened report.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Print_System_Boolean_System_Boolean_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Print(System.Boolean,System.Boolean)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Print.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Print_System_Boolean_System_Boolean_">Print(bool, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Prints the currently opened report.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Print_System_Boolean_System_Boolean_System_Boolean_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Print(System.Boolean,System.Boolean,System.Boolean)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Print.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Print_System_Boolean_System_Boolean_System_Boolean_">Print(bool, bool, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Prints the currently opened report.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Render_GrapeCity_ActiveReports_Extensibility_Rendering_IRenderingExtension_GrapeCity_ActiveReports_Extensibility_Rendering_IO_StreamProvider_System_Collections_Specialized_NameValueCollection_" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Render(GrapeCity.ActiveReports.Extensibility.Rendering.IRenderingExtension,GrapeCity.ActiveReports.Extensibility.Rendering.IO.StreamProvider,System.Collections.Specialized.NameValueCollection)">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Render.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Render_GrapeCity_ActiveReports_Extensibility_Rendering_IRenderingExtension_GrapeCity_ActiveReports_Extensibility_Rendering_IO_StreamProvider_System_Collections_Specialized_NameValueCollection_">Render(IRenderingExtension, StreamProvider, NameValueCollection)</a>
        </td>
        <td class="markdown level1 summary"><p>Exports the specified loaded report to the specified file (or group of files) by using the specified rendering extension.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SetParametersValues_System_Collections_Generic_IEnumerable_GrapeCity_Viewer_Common_IParameter__" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SetParametersValues(System.Collections.Generic.IEnumerable{GrapeCity.Viewer.Common.IParameter})">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.SetParametersValues.html#GrapeCity_ActiveReports_Viewer_Wpf_Viewer_SetParametersValues_System_Collections_Generic_IEnumerable_GrapeCity_Viewer_Common_IParameter__">SetParametersValues(IEnumerable&lt;IParameter&gt;)</a>
        </td>
        <td class="markdown level1 summary"><p>Sets the values of the parameters for the currently displayed report.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="events">Events
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_Action" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Action">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.Action.html">Action</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when an action is performed on the document in the viewer.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_ErrorOccured" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ErrorOccured">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.ErrorOccured.html">ErrorOccured</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when an error occurs within the viewer. This event provides detailed information about the error,
allowing for custom error handling or logging.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_HyperLink" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperLink">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.HyperLink.html">HyperLink</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when a hyperlink is clicked in the currently opened document.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_LoadCompleted" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadCompleted">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadCompleted.html">LoadCompleted</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs after all the viewer pages have been fully loaded.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_ActiveReports_Viewer_Wpf_Viewer_RefreshReport" data-uid="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.RefreshReport">
          <a class="xref" href="GrapeCity.ActiveReports.Viewer.Wpf.Viewer.RefreshReport.html">RefreshReport</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs before the viewer refreshes the report.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
