[]
Gets a value indicating whether exporting the report is permitted.
[Browsable(false)]
public bool CanExport { get; }
Type | Description |
---|---|
bool |
Exporting is permitted only if the viewer is not disposed, there is at least one page loaded in the viewer, and the underlying API supports exporting. |
// Assuming 'exportMenuItem' is a ToolStripMenuItem for exporting
exportMenuItem.Enabled = viewer.CanExport;