windowsforms-devexpress-dot-xtragrid-dot-views-dot-layout-dot-layoutviewoptionsview-9d1582de.md
Gets or sets the threshold for partially displayed cards, in pixels.
Namespace : DevExpress.XtraGrid.Views.Layout
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(10)]
[XtraSerializableProperty]
public virtual int PartialCardWrapThreshold { get; set; }
<DefaultValue(10)>
<XtraSerializableProperty>
Public Overridable Property PartialCardWrapThreshold As Integer
| Type | Default | Description |
|---|---|---|
| Int32 | 10 |
An integer value that specifies the threshold for partially displayed cards, in pixels.
|
You can access this nested property as listed below:
| Object Type | Path to PartialCardWrapThreshold |
|---|---|
| LayoutView |
.OptionsView .PartialCardWrapThreshold
|
Cards can be partially displayed when the LayoutViewOptionsView.CardArrangeRule property is set to LayoutCardArrangeRule.AllowPartialCards.
In this mode, cards are partially displayed if the View provides sufficient empty space at the right/bottom edge for them. The PartialCardWrapThreshold property determines this threshold. If the View’s empty space at the right/bottom edge is greater than or equal to the value of the PartialCardWrapThreshold property, a card will be partially displayed. If this space is less than the specified threshold, cards that can be potentially displayed partially will not be visible partially. An end-user will need to scroll the View to see these cards.
See Also