Skip to main content
Tag

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ColumnBase.PrintTotalSummaryStyle Property

Gets or sets the style applied to printed total summary items displayed in this column. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public Style PrintTotalSummaryStyle { get; set; }

#Property Value

Type Description
Style

The style applied to printed total summary items displayed in this column.

#Remarks

Target Type: TextEdit

#Example

<Window xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
        xmlns:dxgt="http://schemas.devexpress.com/winfx/2008/xaml/grid/themekeys"
        xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
    <Window.Resources>
        <Style x:Key="customPrintTotalSummaryStyle" 
               BasedOn="{StaticResource {dxgt:TableViewThemeKey ResourceKey=DefaultPrintTotalSummaryStyle}}" 
               TargetType="dxe:TextEdit">
            <Setter Property="HorizontalContentAlignment" Value="Center" />
            <Setter Property="BorderBrush" Value="White" />
            <Setter Property="Background" Value="White"/>
            <Setter Property="BorderThickness" Value="1" />
        </Style>
    </Window.Resources>

    <dxg:GridControl ...>
    ...
        <dxg:GridControl.Columns>
            <dxg:GridColumn FieldName="FullName" 
                            PrintTotalSummaryStyle="{StaticResource customPrintTotalSummaryStyle}"/>
            ...
        </dxg:GridControl.Columns>
    </dxg:GridControl>
</Window>

Refer to the following topics for more information on how to print data:

See Also