IBasePrintable Interface
This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Namespace: DevExpress.XtraPrinting
Assembly: DevExpress.Printing.v22.1.Core.dll
Declaration
[ComVisible(false)]
public interface IBasePrintable
<ComVisible(False)>
Public Interface IBasePrintable
Related API Members
The following members return IBasePrintable objects:
Related API Members
The following members return IBasePrintable objects:
Related API Members
The following members return IBasePrintable objects:
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the IBasePrintable interface.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
Reporting_how-to-implement-the-iprintable-interface-e8/CS/PrintableListView.cs#L32
#region #IBasePrintable
void IBasePrintable.Initialize(IPrintingSystem ps, ILink link) {
this.ps = ps;
}
void IBasePrintable.CreateArea(string areaName, IBrickGraphics graph) {
if(areaName != "Detail")
}
private static Bitmap ExportToImage(IBasePrintable component)
{
Reporting_how-to-implement-the-iprintable-interface-e8/VB/PrintableListView.vb#L36
#Region "#IBasePrintable"
Private Sub IBasePrintable_Initialize(ByVal ps As IPrintingSystem, ByVal link As ILink) Implements IBasePrintable.Initialize
Me.ps = ps
End Function
Private Sub IBasePrintable_CreateArea(ByVal areaName As String, ByVal graph As IBrickGraphics) Implements IBasePrintable.CreateArea
If areaName <> "Detail" Then
Private Function ExportToImage(ByVal component As IBasePrintable) As Bitmap
Dim pLink As PrintableComponentLinkBase = New PrintableComponentLinkBase(New PrintingSystemBase())