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

IExportableAnalysisEditor.Printable Property

Specifies the IPrintable control of the current exportable analysis editor.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

IPrintable Printable { get; set; }

Property Value

Type Description
IPrintable

An IPrintable control of the current exportable analysis editor.

Remarks

The ExportAnalysisController uses the XtraPrintingLibrary to perform export operations under an analysis editor’s control. This library exposes types that export data from the controls that implement the IPrintable interface. So, the Export Analysis Controller exports data only from the editors whose control implements the IPrintable interface. To access the printable control of the current exportable analysis editor, use the Printable property.

It may be required to change the current control to be exported, when implementing a custom IExportableAnalysisEditor Property Editor. In this instance, trigger the IExportableAnalysisEditor.PrintableChanged event in the Printable property’s setter, to notify the ExportAnalysisController that the ExportAnalysisController.ExportAction should be updated.

public IPrintable Printable {
    get { return printable; }
    set {
        if(printable != value) {
            printable = value;
            if(PrintableChanged != null) {
                PrintableChanged(this, new PrintableChangedEventArgs(printable));
            }
        }
    }
}
See Also