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

DataViewBase.SelectionRectangleStyle Property

Gets or sets a style of the marquee selection rectangle. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

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

Declaration

public Style SelectionRectangleStyle { get; set; }

Property Value

Type Description
Style

A Style object that represents a style to be applied to the marquee selection rectangle.

Remarks

Target type: System.Windows.Controls.Border

To learn more, see Styles and Templates.

See the example below.

<dxg:TableView.SelectionRectangleStyle>
    <Style TargetType="Border">
        <Setter Property="Opacity" Value="0.1" />
        <Setter Property="Background" Value="Yellow" />
        <Setter Property="BorderBrush" Value="Red" />
        <Setter Property="BorderThickness" Value="2" />
    </Style>
</dxg:TableView.SelectionRectangleStyle>
See Also