wpf-devexpress-dot-xpf-dot-editors-dot-baseedit-71fc9aa0.md
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
public bool IsPrintingMode { get; set; }
Public Property IsPrintingMode As Boolean
| Type | Description |
|---|---|
| Boolean |
true if the editor is in printing mode; otherwise, false.
|
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
<Style x:Key="headerTextStyle" TargetType="dxe:TextEdit">
<Setter Property="IsPrintingMode" Value="true" />
<Setter Property="EditMode" Value="InplaceInactive" />
<DataTemplate x:Key="dayNameTemplate">
<dxe:TextEdit IsPrintingMode="True" Text="{Binding Path=Content}" />
</DataTemplate>
reporting-wpf-documentpreviewcontrol-customize-toolbar/CS/MainWindow.xaml#L13
<DataTemplate x:Key="dayNameTemplate">
<dxe:TextEdit IsPrintingMode="True" Text="{Binding Path=Content}"/>
</DataTemplate>
See Also