Back to Devexpress

BaseEdit.IsPrintingMode Property

wpf-devexpress-dot-xpf-dot-editors-dot-baseedit-71fc9aa0.md

latest3.0 KB
Original Source

BaseEdit.IsPrintingMode Property

Gets or sets whether the editor is in printing mode.

Namespace : DevExpress.Xpf.Editors

Assembly : DevExpress.Xpf.Core.v25.2.dll

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public bool IsPrintingMode { get; set; }
vb
Public Property IsPrintingMode As Boolean

Property Value

TypeDescription
Boolean

true if the editor is in printing mode; otherwise, false.

|

Remarks

If you create templates used to render grid elements when it is printed and use DevExpress Data Editors, set an editor’s IsPrintingMode property to true to correctly calculate its bounds and margins in a printing document. For an example, please see ‘Print Templates‘ in the DXGrid control’s demo.

The following code snippets (auto-collected from DevExpress Examples) contain references to the IsPrintingMode property.

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-wpf-print-listview-data/CS/Window1.xaml#L14

xml
<Style x:Key="headerTextStyle" TargetType="dxe:TextEdit">
    <Setter Property="IsPrintingMode" Value="true" />
    <Setter Property="EditMode" Value="InplaceInactive" />

reporting-wpf-hide-specific-export-formats-from-the-document-preview-control/CS/HideExportFormats/MainWindow.xaml#L14

xml
<DataTemplate x:Key="dayNameTemplate">
    <dxe:TextEdit IsPrintingMode="True" Text="{Binding Path=Content}" />
</DataTemplate>

reporting-wpf-documentpreviewcontrol-customize-toolbar/CS/MainWindow.xaml#L13

xml
<DataTemplate x:Key="dayNameTemplate">
    <dxe:TextEdit IsPrintingMode="True" Text="{Binding Path=Content}"/>
</DataTemplate>

See Also

BaseEdit Class

BaseEdit Members

DevExpress.Xpf.Editors Namespace