﻿<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>
    <name>DevExpress.WinUI.Grid.v23.1</name>
  </assembly>
  <members>
    <member name="N:DevExpress.WinUI.Grid">
      <summary>
        <para>Contains classes which implement the main functionality of the DevExpress Grid Control.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.AlternateRowBackgroundPalette">
      <summary>
        <para>The palette used to paint the background of alternate rows. The palette consists of the <see cref="T:DevExpress.WinUI.Grid.AlternateRowBackgroundPaletteItem"/> objects.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.AlternateRowBackgroundPalette.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.AlternateRowBackgroundPalette"/> class.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.AlternateRowBackgroundPaletteItem">
      <summary>
        <para>An item in the <see cref="T:DevExpress.WinUI.Grid.AlternateRowBackgroundPalette"/>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.AlternateRowBackgroundPaletteItem.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.AlternateRowBackgroundPaletteItem"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.AlternateRowBackgroundPaletteItem.Background">
      <summary>
        <para>Gets or sets a brush used to paint the background of alternate rows. This is a dependency property.</para>
      </summary>
      <value>A brush used to paint the background of alternate rows.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.AlternateRowBackgroundPaletteItem.BackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.AlternateRowBackgroundPaletteItem.Background"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.AutoFilterCondition">
      <summary>
        <para>Lists values that specify the type of the comparison operator used to create filter conditions within the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Auto Filter Row</see>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.AutoFilterCondition.Contains">
      <summary>
        <para>The Contains operator is used to create filter conditions. This operator selects records whose values in the corresponding column contain the entered string.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.AutoFilterCondition.Default">
      <summary>
        <para>For string values, the Like comparison operator is used to create filter conditions. This operator selects records whose values in the corresponding column start with the entered string. For other values (e.g. Boolean, numeric), the Equals comparison operator is used.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.AutoFilterCondition.Equals">
      <summary>
        <para>The Equals comparison operator is used to create filter conditions. This operator selects records whose values in the corresponding column match the entered value.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.AutoFilterCondition.Like">
      <summary>
        <para>The Like comparison operator is used to create filter conditions. This operator selects records whose values in the corresponding column start with the entered string.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.AutoFilterRowData">
      <summary>
        <para>Contains information about the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Auto Filter Row</see>.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.AutoGeneratingColumnEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.DataControlBase.AutoGeneratingColumn"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.AutoGeneratingColumnEventArgs.#ctor(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.AutoGeneratingColumnEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.BaseAsyncArgs">
      <summary>
        <para>Populates the <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.FetchRows"/>, <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.GetTotalSummaries"/>, and <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.GetUniqueValues"/> events with data.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.BaseAsyncArgs.CancellationToken">
      <summary>
        <para>Gets a token that allows you to respond to a task cancellation request invoked by the GridControl.</para>
      </summary>
      <value>A cancellation token.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CellData">
      <summary>
        <para>Contains information about grid cells.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.Column">
      <summary>
        <para>Gets the grid column.</para>
      </summary>
      <value>The grid column.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.IsFocused">
      <summary>
        <para>Gets whether the cell is focused.</para>
      </summary>
      <value>true if the cell is focused; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.IsSelected">
      <summary>
        <para>Gets whether the cell is selected.</para>
      </summary>
      <value>true if the cell is selected; otherwise, false.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.CellData.PropertyChanged">
      <summary>
        <para>Occurs when any of the <see cref="T:DevExpress.WinUI.Grid.CellData"/> class properties’ values change.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.Row">
      <summary>
        <para>Gets a record in a data source.</para>
      </summary>
      <value>A record in a data source.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.RowData">
      <summary>
        <para>Gets information about the data row.</para>
      </summary>
      <value>Information about the data row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.SelectionState">
      <summary>
        <para>Gets the cell’s selection state: focused, selected, focused and selected, or neither.</para>
      </summary>
      <value>The cell’s selection state.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.Text">
      <summary>
        <para>Gets or sets the text displayed in the cell.</para>
      </summary>
      <value>The text displayed in the cell.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.UnboundData">
      <summary>
        <para>Gets the row’s unbound values.</para>
      </summary>
      <value>A dictionary where each field name corresponds to the row’s unbound value.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.ValidationError">
      <summary>
        <para>Gets information about the cell’s validation error.</para>
      </summary>
      <value>Information about the cell’s validation error.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.ValidationErrorImage">
      <summary>
        <para>Gets the image displayed in a cell if it is invalid.</para>
      </summary>
      <value>The image displayed in a cell if it is invalid.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.ValidationErrorText">
      <summary>
        <para>Gets the cell’s validation error text.</para>
      </summary>
      <value>The cell’s validation error text.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellData.Value">
      <summary>
        <para>Gets or sets the cell’s value.</para>
      </summary>
      <value>The cell’s value.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CellStyleSettings">
      <summary>
        <para>Contains style settings that specify cell appearance.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.CellStyleSettings.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.CellStyleSettings"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.Background">
      <summary>
        <para>Gets or sets a brush that paints a cell’s background.</para>
      </summary>
      <value>A brush that paints a cell’s background.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.BackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.Background"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedBackground">
      <summary>
        <para>Gets or sets a brush that paints the focused cell’s background.</para>
      </summary>
      <value>A brush that paints the focused cell’s background.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FocusedBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedForeground">
      <summary>
        <para>Gets or sets a brush that paints the focused cell’s foreground.</para>
      </summary>
      <value>A brush that paints the focused cell’s foreground.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FocusedForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedForeground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedRowBackground">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FocusedRowBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedRowBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedRowForeground">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FocusedRowForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedRowForeground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedSelectedBackground">
      <summary>
        <para>Gets or sets a brush that paints a cell’s background when this cell is focused and selected at the same time.</para>
      </summary>
      <value>A brush that paints a cell’s background when this cell is focused and selected at the same time.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FocusedSelectedBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedSelectedBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedSelectedForeground">
      <summary>
        <para>Gets or sets a brush that paints a cell’s foreground when this cell is focused and selected at the same time.</para>
      </summary>
      <value>A brush that paints a cell’s foreground when this cell is focused and selected at the same time.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FocusedSelectedForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FocusedSelectedForeground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FontFamily">
      <summary>
        <para>Gets or sets a cell’s font family.</para>
      </summary>
      <value>A cell’s font family.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FontFamilyProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FontFamily"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FontSize">
      <summary>
        <para>Gets or sets a cell’s font size.</para>
      </summary>
      <value>A cell’s font size.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FontSizeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FontSize"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FontStretch">
      <summary>
        <para>Gets or sets a cell’s font stretch.</para>
      </summary>
      <value>A cell’s font stretch.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FontStretchProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FontStretch"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FontStyle">
      <summary>
        <para>Gets or sets a cell’s font style.</para>
      </summary>
      <value>A cell’s font style.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FontStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FontStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.FontWeight">
      <summary>
        <para>Gets or sets a cell’s font weight.</para>
      </summary>
      <value>A cell’s font weight.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.FontWeightProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.FontWeight"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.Foreground">
      <summary>
        <para>Gets or sets a brush that paints a row’s foreground.</para>
      </summary>
      <value>A brush that paints a row’s foreground.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.ForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.Foreground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.Padding">
      <summary>
        <para>Gets or sets the space between the cell’s borders and its contents.</para>
      </summary>
      <value>A cell’s padding.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.PaddingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.Padding"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.SelectedBackground">
      <summary>
        <para>Gets or sets a brush that paints the selected cell’s background.</para>
      </summary>
      <value>A brush that paints the selected cell’s background.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.SelectedBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.SelectedBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.SelectedForeground">
      <summary>
        <para>Gets or sets a brush that paints the selected cell’s foreground.</para>
      </summary>
      <value>A brush that paints the selected cell’s foreground.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.SelectedForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.SelectedForeground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.SelectedRowBackground">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.SelectedRowBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.SelectedRowBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.SelectedRowForeground">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.SelectedRowForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.SelectedRowForeground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.ValidationCriticalImage">
      <summary>
        <para>Gets or sets a cell validation image for which <see cref="P:DevExpress.WinUI.Editors.ValidationEventArgs.ErrorType"/> is Critical.</para>
      </summary>
      <value>A cell validation image for which <see cref="P:DevExpress.WinUI.Editors.ValidationEventArgs.ErrorType"/> is Critical.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.ValidationCriticalImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.ValidationCriticalImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.ValidationInformationImage">
      <summary>
        <para>Gets or sets a cell validation image for which <see cref="P:DevExpress.WinUI.Editors.ValidationEventArgs.ErrorType"/> is Information.</para>
      </summary>
      <value>A cell validation image for which <see cref="P:DevExpress.WinUI.Editors.ValidationEventArgs.ErrorType"/> is Information.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.ValidationInformationImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.ValidationInformationImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellStyleSettings.ValidationWarningImage">
      <summary>
        <para>Gets or sets a cell validation image for which <see cref="P:DevExpress.WinUI.Editors.ValidationEventArgs.ErrorType"/> is Warning.</para>
      </summary>
      <value>A cell validation image for which <see cref="P:DevExpress.WinUI.Editors.ValidationEventArgs.ErrorType"/> is Warning.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CellStyleSettings.ValidationWarningImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.CellStyleSettings.ValidationWarningImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CellValueChangedEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.CellValueChanged"/> and <see cref="E:DevExpress.WinUI.Grid.GridControl.CellValueChanging"/> events.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.CellValueChangedEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.Int32,DevExpress.WinUI.Grid.ColumnBase,System.Object,System.Object)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.CellValueChangedEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CellValueChangedEventArgs.OldValue">
      <summary>
        <para>Gets an old cell value.</para>
      </summary>
      <value>An old cell value.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ClipboardCopyFormats">
      <summary>
        <para>Lists file formats in which the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> copies its data to the clipboard.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardCopyFormats.All">
      <summary>
        <para>Data is copied to the clipboard in CSV, XLS (BIFF8), HTML, RTF, and TXT formats.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardCopyFormats.Csv">
      <summary>
        <para>Data is copied to the clipboard in CSV format.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardCopyFormats.Excel">
      <summary>
        <para>Data is copied to the clipboard in Excel formats (XLS/XLSX).</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardCopyFormats.Html">
      <summary>
        <para>Data is copied to the clipboard in HTML format.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardCopyFormats.Rtf">
      <summary>
        <para>Data is copied to the clipboard in RTF format.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardCopyFormats.Txt">
      <summary>
        <para>Data is copied to the clipboard in TXT format.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ClipboardInfoType">
      <summary>
        <para>Lists types of the copied grid elements.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardInfoType.ColumnHeader">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> copies column headers.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardInfoType.Group">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> copies group rows.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ClipboardInfoType.Row">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> copies data rows.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ClipboardRowCopyingEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.ClipboardRowCopying"/> event.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowCopyingEventArgs.Cancel">
      <summary>
        <para>Gets or sets whether to exclude the processed grid element from the copy operation’s result.</para>
      </summary>
      <value>true to exclude the processed grid element from the copy operation’s result; otherwise, false</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowCopyingEventArgs.RowHandle">
      <summary>
        <para>Gets the processed row’s handle (<see cref="F:DevExpress.WinUI.Grid.DataControlBase.InvalidRowHandle"/> for column headers).</para>
      </summary>
      <value>The processed row’s handle.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowCopyingEventArgs.Type">
      <summary>
        <para>Gets the type of the copied element: column headers, group rows, or data rows.</para>
      </summary>
      <value>The element type.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowCopyingEventArgs.Values">
      <summary>
        <para>Gets information about the copied grid element (a column headers collection, group row, or data row) with its appearance settings.</para>
      </summary>
      <value>Information about the copied grid element (a column headers collection, group row, or data row) with its appearance settings.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.ClipboardRowPasting"/> event.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs.Cancel">
      <summary>
        <para>Gets or sets whether to exclude the processed row from the paste operation’s result.</para>
      </summary>
      <value>true to exclude the processed row from the paste operation’s result; otherwise, false</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs.CellValues">
      <summary>
        <para>Gets pasted values.</para>
      </summary>
      <value>Pasted values.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs.Columns">
      <summary>
        <para>Gets changed columns.</para>
      </summary>
      <value>Changed columns.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs.IsRowValid">
      <summary>
        <para>Returns whether the processed row can be pasted in the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</para>
      </summary>
      <returns>true if the processed row can be pasted in the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>; otherwise, false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs.IsRowValueValid(DevExpress.WinUI.Grid.ColumnBase,System.Object,System.Exception@)">
      <summary>
        <para>Returns whether the specified value can be pasted in the column. If not, returns an exception that describes why the value cannot be pasted.</para>
      </summary>
      <param name="column">A grid column.</param>
      <param name="value">A pasted value.</param>
      <param name="e">An exception that describes why the value cannot be pasted in the column.</param>
      <returns>true if the specified value can be pasted in the column; otherwise, false.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs.OriginalCellValues">
      <summary>
        <para>Gets the row’s original values.</para>
      </summary>
      <value>The row’s original values.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs.RowCount">
      <summary>
        <para>Gets the total number of rows pasted in the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</para>
      </summary>
      <value>The total number of rows pasted in the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardRowPastingEventArgs.RowHandle">
      <summary>
        <para>Gets the processed row’s handle.</para>
      </summary>
      <value>The processed row’s handle.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ClipboardValueInfo">
      <summary>
        <para>Contains information about the copied grid element (a column header, group row, or data cell) with its appearance settings.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.ClipboardValueInfo.#ctor(DevExpress.WinUI.Grid.ColumnBase,System.Int32,DevExpress.XtraExport.Helpers.ClipboardCellInfo)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.ClipboardValueInfo"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.Background">
      <summary>
        <para>Gets or sets a brush that paints the element’s background.</para>
      </summary>
      <value>A brush that paints the element’s background.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.BorderBrush">
      <summary>
        <para>Gets or sets a brush that paints the element’s border.</para>
      </summary>
      <value>A brush that paints the element’s border.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.BorderStyle">
      <summary>
        <para>Gets or sets a border style.</para>
      </summary>
      <value>A border style.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.Column">
      <summary>
        <para>Gets a grid column.</para>
      </summary>
      <value>A grid column.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.DisplayValue">
      <summary>
        <para>Gets the text displayed in the element.</para>
      </summary>
      <value>The text displayed in the element.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.FontSize">
      <summary>
        <para>Gets or sets the element’s font size.</para>
      </summary>
      <value>The element’s font size.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.FontStyle">
      <summary>
        <para>Gets or sets the element’s font style.</para>
      </summary>
      <value>The element’s font style.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.FontWeight">
      <summary>
        <para>Gets or sets the element’s font weight.</para>
      </summary>
      <value>The element’s font weight.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.Foreground">
      <summary>
        <para>Gets or sets a brush that paints the element’s foreground.</para>
      </summary>
      <value>A brush that paints the element’s foreground.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.OriginalValue">
      <summary>
        <para>Gets the element’s original value.</para>
      </summary>
      <value>The element’s original value.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfo.Value">
      <summary>
        <para>Gets or sets the element’s value.</para>
      </summary>
      <value>The element’s value.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ClipboardValueInfoCollection">
      <summary>
        <para>Stores information about the copied grid element (a column headers collection, group row, or data row) with its appearance settings.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.ClipboardValueInfoCollection.#ctor(DevExpress.WinUI.Grid.DataControlBase,System.Int32,System.Collections.Generic.IEnumerable{DevExpress.WinUI.Grid.ColumnBase},System.Collections.Generic.IEnumerable{DevExpress.XtraExport.Helpers.ClipboardCellInfo})">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.ClipboardValueInfoCollection"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ClipboardValueInfoCollection.Item(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Gets information about the copied grid element that is located in the specified column.</para>
      </summary>
      <param name="column">The grid column.</param>
      <value>Information about the copied grid element.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ColumnBase">
      <summary>
        <para>Serves as a base for classes that represent data columns.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.ColumnBase.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.ColumnBase"/> class with default settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ActualAllowGrouping">
      <summary>
        <para>Gets whether users can group data by this column. This is a dependency property.</para>
      </summary>
      <value>true if users can group data by this column; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ActualAllowGroupingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ActualAllowGrouping"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ActualWidth">
      <summary>
        <para>Gets the column’s actual width. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.Double"/> value that is the column’s width, in pixels.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ActualWidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ActualWidth"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowAutoFilter">
      <summary>
        <para>Gets or sets whether a user can use the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">automatic filter row</see> to filter data by the column’s values. This is a dependency property.</para>
      </summary>
      <value>true to allow a user to use the automatic filter row to filter data by the column’s values; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowAutoFilterProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowAutoFilter">ColumnBase.AllowAutoFilter</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowedAnyOfFilters">
      <summary>
        <para>Gets or sets any of filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</para>
      </summary>
      <value>Any of filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowedAnyOfFiltersProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowedAnyOfFilters"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowedBetweenFilters">
      <summary>
        <para>Gets or sets between filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</para>
      </summary>
      <value>Between filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowedBetweenFiltersProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowedBetweenFilters"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowedBinaryFilters">
      <summary>
        <para>Gets or sets binary filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</para>
      </summary>
      <value>Binary filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowedBinaryFiltersProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowedBinaryFilters"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowedDateTimeFilters">
      <summary>
        <para>Gets or sets date-time filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</para>
      </summary>
      <value>Date-time filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowedDateTimeFiltersProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowedDateTimeFilters"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowEditing">
      <summary>
        <para>Gets or sets whether users can edit column values. This is a dependency property.</para>
      </summary>
      <value>true to allow users to edit column values; otherwise false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowEditingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowEditing">ColumnBase.AllowEditing</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowedUnaryFilters">
      <summary>
        <para>Gets or sets unary filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</para>
      </summary>
      <value>Unary filters that the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s column supports.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowedUnaryFiltersProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowedUnaryFilters"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowFiltering">
      <summary>
        <para>Gets or sets whether users can filter data by this column. This is a dependency property.</para>
      </summary>
      <value>A value that specifies whether users can filter data by this column.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowFilteringProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowFiltering"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowFocus">
      <summary>
        <para>Gets or sets whether the column cells can be focused. This is a dependency property.</para>
      </summary>
      <value>true to allow the column cells to be focused; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowFocusProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowFocus">ColumnBase.AllowFocus</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowGrouping">
      <summary>
        <para>Gets or sets whether users can group data by this column. This is a dependency property.</para>
      </summary>
      <value>A value that specifies whether users can group data by this column.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowGroupingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowGrouping"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowMoving">
      <summary>
        <para>Gets or sets whether an end-user is allowed to move this column by dragging its header. This is a dependency property.</para>
      </summary>
      <value>true, to allow users to move the grid column; otherwise false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowMovingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowMoving">ColumnBase.AllowMoving</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowPrint">
      <summary>
        <para>Gets or sets whether to display the column in the printed/exported document. This is a dependency property.</para>
      </summary>
      <value>true to display the column in the print/export document; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowPrintProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowPrint"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowResizing">
      <summary>
        <para>Gets or sets whether users can resize this column. This is a dependency property.</para>
      </summary>
      <value>true, to allow users to resize the grid column; otherwise false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowResizingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowResizing">ColumnBase.AllowResizing</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowSearchPanel">
      <summary>
        <para>Gets or sets whether the column’s values are taken into account when users search data. This is a dependency property.</para>
      </summary>
      <value>true to use the column’s values when users search data; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowSearchPanelProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowSearchPanel"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AllowSorting">
      <summary>
        <para>Gets or sets whether users can sort data by the column’s values. This is a dependency property.</para>
      </summary>
      <value>true, to allow users to sort the grid column’s data; otherwise false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AllowSortingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AllowSorting">ColumnBase.AllowSorting</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AutoFilterCondition">
      <summary>
        <para>Gets or sets the type of the comparison operator used to create filter conditions for the current column using the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Auto Filter Row</see>. This is a dependency property.</para>
      </summary>
      <value>An <see cref="T:DevExpress.WinUI.Grid.AutoFilterCondition"/> enumeration value that specifies the type of the comparison operator.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AutoFilterConditionProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AutoFilterCondition">ColumnBase.AutoFilterCondition</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AutoFilterCriteria">
      <summary>
        <para>Gets or sets the type of the filter criteria used to filter the grid data. This is a dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AutoFilterCriteriaProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AutoFilterCriteria">ColumnBase.AutoFilterCriteria</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.AutoFilterValue">
      <summary>
        <para>Gets or sets the value in the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see> for this column.</para>
      </summary>
      <value>The column’s value in the automatic filter row.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.AutoFilterValueProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.AutoFilterValue">ColumnBase.AutoFilterValue</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.CellHorizontalContentAlignment">
      <summary>
        <para>Gets or sets the cell content’s horizontal alignment. This is a dependency property.</para>
      </summary>
      <value>The cell content’s horizontal alignment.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.CellHorizontalContentAlignmentProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.CellHorizontalContentAlignment"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.CellStyleSettings">
      <summary>
        <para>Gets or sets style settings applied to a column’s cells.</para>
      </summary>
      <value>Style settings applied to a column’s cells.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.CellStyleSettingsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.CellStyleSettings"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.CellToolTipTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of <see href="https://docs.devexpress.com/WinUI/403834/controls/data-grid/visual-elements/tooltips">cell tooltips</see>. This is a dependency property.</para>
      </summary>
      <value>A template that defines the appearance of cell tooltips. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.CellData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.CellToolTipTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.CellToolTipTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.CellVerticalContentAlignment">
      <summary>
        <para>Gets or sets the cell content’s vertical alignment. This is a dependency property.</para>
      </summary>
      <value>The cell content’s vertical alignment.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.CellVerticalContentAlignmentProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.CellVerticalContentAlignment"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ColumnChooserHeaderCaption">
      <summary>
        <para>Gets or sets the caption of the <see href="https://docs.devexpress.com/WinUI/102385/controls/data-grid/visual-elements/column-chooser">Column Chooser</see>. This is a dependency property.</para>
      </summary>
      <value>An object that represents the caption shown at the top of the Column Chooser.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ColumnChooserHeaderCaptionProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ColumnChooserHeaderCaption">ColumnBase.ColumnChooserHeaderCaption</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ColumnFilterMode">
      <summary>
        <para>Gets or sets how column values are filtered. This is a dependency property.</para>
      </summary>
      <value>Specifies how column values are filtered.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ColumnFilterModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ColumnFilterMode"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.Commands">
      <summary>
        <para>Provides access to column commands.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.GridColumnCommands"/> object that provides a set of column commands.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.CustomColumnFilterPopupTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of the column’s drop-down filter. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:Microsoft.UI.Xaml.DataTemplate"/> object that defines the appearance of a custom column filter.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.CustomColumnFilterPopupTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.CustomColumnFilterPopupTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.FieldName">
      <summary>
        <para>Gets the name of the database field assigned to this column. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.String"/> value that specifies the name of a data field.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.FieldNameProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.FieldName">ColumnBase.FieldName</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.FilterPopupGroupFields">
      <summary>
        <para>Gets or sets field names of the values that are grouped in the <see href="https://docs.devexpress.com/WinUI/403846/controls/data-grid/filter-data/excel-style-filter">Excel-style drop-down filter</see>.</para>
      </summary>
      <value>Field names of the values that are grouped in the Excel-style drop-down filter.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.FilterPopupGroupFieldsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.FilterPopupGroupFields"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.FilterPopupMode">
      <summary>
        <para>Gets or sets the display mode of the column’s <see href="https://docs.devexpress.com/WinUI/102155/controls/data-grid/filter-data#drop-down-filter">drop-down filter</see>. This is a dependency property.</para>
      </summary>
      <value>The display mode of the column’s drop-down filter.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.FilterPopupModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.FilterPopupMode">ColumnBase.FilterPopupMode</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.FixedWidth">
      <summary>
        <para>Gets or sets whether the column’s width remains the same when the auto column width feature is enabled. This is a dependency property.</para>
      </summary>
      <value>true the column’s width remains the same when the auto column width feature is enabled; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.FixedWidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.FixedWidth">ColumnBase.FixedWidth</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.GroupColumnSummaryItemTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of group summary items in this column. This is a dependency property.</para>
      </summary>
      <value>A template that defines the appearance of group summary items in this column. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.GroupColumnSummaryData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.GroupColumnSummaryItemTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.GroupColumnSummaryItemTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.GroupIndex">
      <summary>
        <para>Gets or sets the column’s position among grouping columns.</para>
      </summary>
      <value>An integer value that specifies the column’s position among grouping columns. Use -1 if the grid isn’t grouped by the values of this column.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.GroupIndexProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.GroupIndex"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.GroupInterval">
      <summary>
        <para>Gets or sets how data rows are grouped when grouping by this column is applied. This is a dependency property.</para>
      </summary>
      <value>A value that specifies how data rows are grouped.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.GroupIntervalProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.GroupInterval"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.Header">
      <summary>
        <para>Gets or sets the column header’s contents. This is a dependency property.</para>
      </summary>
      <value>An object that represents the column header’s contents.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.HeaderHorizontalContentAlignment">
      <summary>
        <para>Gets or sets the column header’s content alignment. This is a dependency property.</para>
      </summary>
      <value>The content’s horizontal alignment.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.HeaderHorizontalContentAlignmentProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.HeaderHorizontalContentAlignment"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.HeaderProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.Header">ColumnBase.Header</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.HeaderStyle">
      <summary>
        <para>Gets or sets the style applied to the column header. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:Microsoft.UI.Xaml.Style"/> object that contains style settings.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.HeaderStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.HeaderStyle">ColumnBase.HeaderStyle</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.HeaderTemplate">
      <summary>
        <para>Gets or sets the template that defines the column header’s presentation. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:Microsoft.UI.Xaml.DataTemplate"/> object that defines the column header’s presentation.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.HeaderTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.HeaderTemplate">ColumnBase.HeaderTemplate</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.HeaderTemplateSelector">
      <summary>
        <para>Gets or sets an object that chooses a column header template based on custom logic. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:Microsoft.UI.Xaml.Controls.DataTemplateSelector"/> descendant that chooses a template based on custom logic.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.HeaderTemplateSelectorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.HeaderTemplateSelector">ColumnBase.HeaderTemplateSelector</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.HeaderToolTip">
      <summary>
        <para>Gets or sets the column header tooltip. This is a dependency property.</para>
      </summary>
      <value>The column header tooltip.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.HeaderToolTipProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.HeaderToolTip">ColumnBase.HeaderToolTip</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.HeaderToolTipTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of the column header’s tooltip. This is a dependency property.</para>
      </summary>
      <value>A template that defines the tooltip’s appearance. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.HeaderData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.HeaderToolTipTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.HeaderToolTipTemplate">ColumnBase.HeaderToolTipTemplate</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ImmediateUpdateAutoFilter">
      <summary>
        <para>Gets or sets whether the column’s filter condition is updated as soon as a user modifies the text within the automatic filter row’s cell. This is a dependency property.</para>
      </summary>
      <value>true to enable immediate updates; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ImmediateUpdateAutoFilterProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ImmediateUpdateAutoFilter">ColumnBase.ImmediateUpdateAutoFilter</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ImmediateUpdateColumnFilter">
      <summary>
        <para>Gets or sets whether the column’s filter condition is updated as soon as a user selects an item within the column’s drop-down filter. This is a dependency property.</para>
      </summary>
      <value>true to enable automatic updates; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ImmediateUpdateColumnFilterProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ImmediateUpdateColumnFilter"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.IsGrouped">
      <summary>
        <para>Gets whether the grid is grouped by the values of this column. This is a dependency property.</para>
      </summary>
      <value>true if the grid is grouped by the values of this column; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.IsGroupedProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.IsGrouped"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.IsSortingBySummaryAllowed">
      <summary>
        <para>Gets whether a user can sort the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> by this column’s group summary values.</para>
      </summary>
      <value>true if a user can sort the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> by this column’s group summary values; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.IsSortingBySummaryAllowedProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.IsSortingBySummaryAllowed"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.MaxWidth">
      <summary>
        <para>Gets or sets the column’s maximum width. This is a dependency property.</para>
      </summary>
      <value>A double value that specifies the column’s maximum width.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.MaxWidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.MaxWidth">ColumnBase.MaxWidth</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.MinWidth">
      <summary>
        <para>Gets or sets the column’s minimum width. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.Double"/> value that specifies the column’s minimum width, in pixels.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.MinWidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.MinWidth">ColumnBase.MinWidth</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.PrintCellStyle">
      <summary>
        <para>Gets or sets the style applied to cells in a printed document. This is a dependency property.</para>
      </summary>
      <value>The style applied to print cells.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.PrintCellStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.PrintCellStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.RoundDateDisplayFormat">
      <summary>
        <para>Gets or sets a format that defines how to display rounded DateTime values.</para>
      </summary>
      <value>A format that defines how to display rounded DateTime values.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.RoundDateDisplayFormatProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.RoundDateDisplayFormat"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.RoundDateTimeForColumnFilter">
      <summary>
        <para>Gets or sets whether to ignore time values when you use the <see href="https://docs.devexpress.com/WinUI/102155/controls/data-grid/filter-data">drop-down filter</see> to filter by DateTime values. This is a dependency property.</para>
      </summary>
      <value>true to ignore time values; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.RoundDateTimeForColumnFilterProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.RoundDateTimeForColumnFilter"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ShowAllTableValuesInFilterPopup">
      <summary>
        <para>Gets or sets whether to display all unique column values in the drop-down filter even if they are filtered out. This is a dependency property.</para>
      </summary>
      <value>true to display all unique values in the column’s drop-down filter; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ShowAllTableValuesInFilterPopupProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ShowAllTableValuesInFilterPopup"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ShowCriteriaInAutoFilterRow">
      <summary>
        <para>Gets or sets whether to display the criteria selector button in the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Auto Filter Row</see>. This is a dependency property.</para>
      </summary>
      <value>true, to display the criteria selector button in the automatic filter row; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ShowCriteriaInAutoFilterRowProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ShowCriteriaInAutoFilterRow">ColumnBase.ShowCriteriaInAutoFilterRow</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ShowEmptyDateFilter">
      <summary>
        <para>Gets or sets whether the date-time column’s <see href="https://docs.devexpress.com/WinUI/102155/controls/data-grid/filter-data#drop-down-filter">drop-down filter</see> has a filter item used to select records that contain null values. This is a dependency property.</para>
      </summary>
      <value>true if a corresponding filter is available; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ShowEmptyDateFilterProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ShowEmptyDateFilter">ColumnBase.ShowEmptyDateFilter</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ShowInColumnChooser">
      <summary>
        <para>Gets or sets whether the column’s header is displayed within the <see href="https://docs.devexpress.com/WinUI/102385/controls/data-grid/visual-elements/column-chooser">Column Chooser</see>. This is a dependency property.</para>
      </summary>
      <value>true, to display the column’s header within the Column Chooser; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ShowInColumnChooserProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ShowInColumnChooser">ColumnBase.ShowInColumnChooser</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.ShowValidationAttributeErrors">
      <summary>
        <para>Gets or sets whether or not error icons are displayed within column cells that fail validation specified by the Data Annotations attribute(s). This is a dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.ShowValidationAttributeErrorsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.ShowValidationAttributeErrors">ColumnBase.ShowValidationAttributeErrors</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.SortIndex">
      <summary>
        <para>Gets the column’s position among sorted columns.</para>
      </summary>
      <value>An integer value that specifies the zero-based column’s index among sorted columns. &#0045;1 if data is not sorted by this column.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.SortIndexProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.SortIndex">ColumnBase.SortIndex</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.SortMode">
      <summary>
        <para>Gets or sets how the column’s data is sorted when sorting is applied to it. This is a dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.SortModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.SortMode">ColumnBase.SortMode</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.SortOrder">
      <summary>
        <para>Gets or sets the column’s sort order. This is a dependency property.</para>
      </summary>
      <value>The column’s sort order.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.SortOrderProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.SortOrder">ColumnBase.SortOrder</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.TabStop">
      <summary>
        <para>Gets or sets whether the column can be focused via the TAB key. This is a dependency property.</para>
      </summary>
      <value>true if the column can be focused via the TAB key; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.TabStopProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.TabStop">ColumnBase.TabStop</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.TotalSummaries">
      <summary>
        <para>Gets a list of total summary items displayed in this column. This is a dependency property.</para>
      </summary>
      <value>A list of total summary items displayed in this column.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.TotalSummaryContentStyle">
      <summary>
        <para>Gets or sets the style of total summary items displayed within the column. This is a dependency property.</para>
      </summary>
      <value>The style of total summary items displayed within the column.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.TotalSummaryContentStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.TotalSummaryContentStyle">ColumnBase.TotalSummaryContentStyle</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.UnboundExpression">
      <summary>
        <para>Gets or sets an expression used to evaluate values for this column if it is not bound to a data source field. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.String"/> that specifies an expression used to evaluate values for this column.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.UnboundExpressionProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.UnboundExpression">ColumnBase.UnboundExpression</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.UnboundType">
      <summary>
        <para>Gets or sets the data type and binding mode of the column. This is a dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.UnboundTypeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.UnboundType">ColumnBase.UnboundType</see> dependency property.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.ColumnBase.Validate">
      <summary>
        <para>Enables you to validate the active editor’s value.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.Visible">
      <summary>
        <para>Gets or sets whether the column is displayed within a grid. This is a dependency property.</para>
      </summary>
      <value>true to display the column within a grid; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.VisibleIndex">
      <summary>
        <para>Gets or sets the column’s position among visible columns. This is a dependency property.</para>
      </summary>
      <value>An integer value that specifies the column’s position among visible columns.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.VisibleIndexProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.VisibleIndex">ColumnBase.VisibleIndex</see> dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.VisibleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.Visible">ColumnBase.Visible</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.ColumnBase.Width">
      <summary>
        <para>Gets or sets the column width. This is a dependency property.</para>
      </summary>
      <value>A column’s width.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnBase.WidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.Width">ColumnBase.Width</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ColumnFilterMode">
      <summary>
        <para>Lists values that specify how column values are filtered.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnFilterMode.DisplayText">
      <summary>
        <para>Column values are filtered by their display text.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ColumnFilterMode.Value">
      <summary>
        <para>Column values are filtered by their values.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ConditionRule">
      <summary>
        <para>Contains rules used to determine whether to apply a conditional format to a cell.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.Between">
      <summary>
        <para>The format is applied to cells whose values fall into the range specified by the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1"/> and <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value2"/> properties.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.Equal">
      <summary>
        <para>The format is applied to cells whose values match the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1"/> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.Expression">
      <summary>
        <para>The format is applied to cells that match the specified <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Expression"/>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.Greater">
      <summary>
        <para>The format is applied to cells whose values are greater than the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1"/> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.GreaterOrEqual">
      <summary>
        <para>The format is applied to cells whose values are greater or equal to the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1"/> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.Less">
      <summary>
        <para>The format is applied to cells whose values are less than the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1"/> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.LessOrEqual">
      <summary>
        <para>The format is applied to cells whose values are less or equal to the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1"/> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.None">
      <summary>
        <para>The format is not applied to cells.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.NotBetween">
      <summary>
        <para>The format is applied to cells whose values fall outside of the range specified by the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1"/> and <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value2"/> properties.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ConditionRule.NotEqual">
      <summary>
        <para>The format is applied to cells whose values do not match the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1"/> property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CriteriaOperatorType">
      <summary>
        <para>Contains logical criteria operators.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CriteriaOperatorType.And">
      <summary>
        <para>The logical AND operator.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.CriteriaOperatorType.Or">
      <summary>
        <para>The logical OR operator.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CurrentColumnChangedEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.DataControlBase.CurrentColumnChanged"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.CurrentColumnChangedEventArgs.#ctor(DevExpress.WinUI.Grid.DataControlBase,DevExpress.WinUI.Grid.ColumnBase,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.CurrentColumnChangedEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CurrentItemChangedEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.DataControlBase.CurrentItemChanged"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.CurrentItemChangedEventArgs.#ctor(DevExpress.WinUI.Grid.DataControlBase,System.Object,System.Object)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.CurrentItemChangedEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CurrentItemChangedEventArgs.NewItem">
      <summary>
        <para>Gets the focused row.</para>
      </summary>
      <value>The focused row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CurrentItemChangedEventArgs.OldItem">
      <summary>
        <para>Gets the previously focused row.</para>
      </summary>
      <value>The previously focused row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CurrentItemChangedEventArgs.Source">
      <summary>
        <para>Gets a control that raised the event.</para>
      </summary>
      <value>A control that raised the event.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CurrentItemChangedEventHandler">
      <summary>
        <para>A method that handles the <see cref="E:DevExpress.WinUI.Grid.DataControlBase.CurrentItemChanged">DataControlBase.CurrentItemChanged</see> event.</para>
      </summary>
      <param name="sender">The event source.</param>
      <param name="e">An object that contains event data.</param>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CustomCellAppearanceEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.DataControlBase.CustomCellAppearance"/> event.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomCellAppearanceEventArgs.CellConditionalFormat">
      <summary>
        <para>Gets the <see href="https://docs.devexpress.com/WinUI/101446/controls/data-grid/conditional-formatting">conditional format</see> applied to the cell.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomCellAppearanceEventArgs.Column">
      <summary>
        <para>Gets the cell’s column</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.ColumnBase object that represents the cell’s column.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomCellAppearanceEventArgs.IsCellSelected">
      <summary>
        <para>Indicates whether the cell is selected.</para>
      </summary>
      <value>true, if the cell is selected; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomCellAppearanceEventArgs.IsRowSelected">
      <summary>
        <para>Indicates whether the row is selected.</para>
      </summary>
      <value>true, if the row is selected; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomCellAppearanceEventArgs.ResultFormat">
      <summary>
        <para>Provides access to the appearance settings applied to the cell.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomCellAppearanceEventArgs.RowConditionalFormat">
      <summary>
        <para>Gets the <see href="https://docs.devexpress.com/WinUI/101446/controls/data-grid/conditional-formatting">conditional format</see> applied to the row.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomCellAppearanceEventArgs.RowHandle">
      <summary>
        <para>Gets the handle of the cell’s row.</para>
      </summary>
      <value>An integer value representing the row handle.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.CustomColumnDisplayText"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs.Column">
      <summary>
        <para>Gets the grid column.</para>
      </summary>
      <value>The grid column.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs.DisplayText">
      <summary>
        <para>Gets or sets the text displayed in the processed cell.</para>
      </summary>
      <value>The text displayed in the processed cell.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs.ListSourceIndex">
      <summary>
        <para>Gets the row’s index in a data source.</para>
      </summary>
      <value>The row’s index in a data source.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs.Row">
      <summary>
        <para>Gets the processed row.</para>
      </summary>
      <value>The processed row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs.RowHandle">
      <summary>
        <para>Gets the processed row’s handle.</para>
      </summary>
      <value>The processed row’s handle.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs.Source">
      <summary>
        <para>Gets the GridControl that raised this event.</para>
      </summary>
      <value>The GridControl that raised this event.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnDisplayTextEventArgs.Value">
      <summary>
        <para>Gets the processed cell’s value.</para>
      </summary>
      <value>The processed cell’s value.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CustomColumnSortEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.CustomColumnSort">GridControl.CustomColumnSort</see> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.#ctor(DevExpress.WinUI.Grid.ColumnBase,System.Int32,System.Int32,System.Object,System.Object,DevExpress.Data.ColumnSortOrder)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.CustomColumnSortEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.Column">
      <summary>
        <para>Gets the column whose values are being compared.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.Handled">
      <summary>
        <para>Gets or sets whether a comparison operation is handled and no default processing is required.</para>
      </summary>
      <value>true if a comparison operation is handled; otherwise false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.ListSourceRowIndex1">
      <summary>
        <para>Gets the index of the first of the two rows being compared in the data source.</para>
      </summary>
      <value>An integer value that specifies the first row’s index in the data source.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.ListSourceRowIndex2">
      <summary>
        <para>Gets the index of the second of the two rows being compared in the data source.</para>
      </summary>
      <value>An integer value that specifies the second row’s index in the data source.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.Result">
      <summary>
        <para>Gets or sets the result of a custom comparison.</para>
      </summary>
      <value>An integer value that specifies the result.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.SortOrder">
      <summary>
        <para>Gets the sort order applied to the column.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.Source">
      <summary>
        <para>Gets the grid control that raised the event.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.GridControl"/> object that raised the event.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.Value1">
      <summary>
        <para>Gets the first value being compared.</para>
      </summary>
      <value>An object that represents the first of the two values being compared.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomColumnSortEventArgs.Value2">
      <summary>
        <para>Gets the second value being compared.</para>
      </summary>
      <value>An object that represents the second of the two values being compared.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CustomColumnSortEventHandler">
      <summary>
        <para>Represents a method that will handle the <see cref="E:DevExpress.WinUI.Grid.GridControl.CustomColumnSort">GridControl.CustomColumnSort</see> event.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CustomGroupDisplayTextEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.CustomGroupDisplayText"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.CustomGroupDisplayTextEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.Int32,DevExpress.WinUI.Grid.ColumnBase,System.Object,System.String)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.CustomGroupDisplayTextEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomGroupDisplayTextEventArgs.DisplayText">
      <summary>
        <para>Gets or sets text displayed in the group row.</para>
      </summary>
      <value>Text displayed in the group row.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.DataControlBase.CustomUniqueValues"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.#ctor(DevExpress.WinUI.Grid.ColumnBase,System.Boolean,System.Boolean,DevExpress.Data.OperationCompleted,DevExpress.Data.Filtering.CriteriaOperator)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.Column">
      <summary>
        <para>Gets a column for which the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> shows the drop-down filter.</para>
      </summary>
      <value>A column for which the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> shows the drop-down filter.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.Filter">
      <summary>
        <para>Gets the current filter.</para>
      </summary>
      <value>The current filter.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.Handled">
      <summary>
        <para>Gets or sets whether to populate the drop-down filter with the specified unique values.</para>
      </summary>
      <value>true to populate the drop-down filter with the specified unique values; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.IncludeFilteredOut">
      <summary>
        <para>Gets whether the drop-down filter displays all column values even if they are filtered out.</para>
      </summary>
      <value>true if the drop-down filter displays all column values; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.RoundDateTime">
      <summary>
        <para>Gets whether to ignore time values when you use the <see href="https://docs.devexpress.com/WinUI/102155/controls/data-grid/filter-data">drop-down filter</see> to filter by DateTime values.</para>
      </summary>
      <value>true if time values are ignored; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.Source">
      <summary>
        <para>Gets the control that raised the event.</para>
      </summary>
      <value>The control that raised the event.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.UniqueValues">
      <summary>
        <para>Gets or sets unique values.</para>
      </summary>
      <value>Unique values.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.UniqueValuesAndCounts">
      <summary>
        <para>Gets or sets unique values and their counts.</para>
      </summary>
      <value>Unique values and their counts.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.UniqueValuesAndCountsAsync">
      <summary>
        <para>Gets or sets a task that allows you to asynchronously return unique values and their counts.</para>
      </summary>
      <value>A task that allows you to asynchronously return unique values and their counts.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.CustomUniqueValuesEventArgs.UniqueValuesAsync">
      <summary>
        <para>Gets or sets a task that allows you to asynchronously return unique values.</para>
      </summary>
      <value>A task that allows you to asynchronously return unique values.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.DataControlBase">
      <summary>
        <para>Serves as a base for classes that represents data-aware controls (e.g. <see cref="T:DevExpress.WinUI.Grid.GridControl"/>).</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ActiveEditor">
      <summary>
        <para>Gets the active editor. This is a dependency property.</para>
      </summary>
      <value>A control that represents the focused cell’s editor. null (Nothing in Visual Basic) if no cell is currently being edited.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ActiveEditorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ActiveEditor">DataControlBase.ActiveEditor</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ActualShowFilterPanel">
      <summary>
        <para>Gets whether the filter panel is displayed within a grid. This is a dependency property.</para>
      </summary>
      <value>true, if the filter panel is displayed within a grid; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ActualShowFilterPanelProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ActualShowFilterPanel">DataControlBase.ActualShowFilterPanel</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AllowCommitOnValidationAttributeError">
      <summary>
        <para>Gets or sets whether or not a cell’s value that has failed validation specified by the Data Annotations attribute(s), can be posted to a data source. This is a dependency property.</para>
      </summary>
      <value>true to allow posting of invalid cell values to a data source; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AllowCommitOnValidationAttributeErrorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AllowCommitOnValidationAttributeError">DataControlBase.AllowCommitOnValidationAttributeError</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AllowCopyToClipboard">
      <summary>
        <para>Gets or sets whether to enable copy operations. This is a dependency property.</para>
      </summary>
      <value>true to enable copy operations; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AllowCopyToClipboardProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AllowCopyToClipboard"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AllowLeaveInvalidEditor">
      <summary>
        <para>Gets or sets whether an editor that did not pass validation can lose focus. This is a dependency property.</para>
      </summary>
      <value>true, to allow moving focus from an editor with an invalid value; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AllowLeaveInvalidEditorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AllowLeaveInvalidEditor">DataControlBase.AllowLeaveInvalidEditor</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AllowLiveDataShaping">
      <summary>
        <para>Gets or sets whether the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> recalculates data shaping operations (for example, sort and filter operations or summary calculation) when you modify a data source outside the grid.</para>
      </summary>
      <value>true to recalculate data shaping operations when you modify a data source outside the grid; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AllowLiveDataShapingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AllowLiveDataShaping"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AlternateRowBackground">
      <summary>
        <para>Gets or sets a brush used to paint the background of alternate rows. This is a dependency property.</para>
      </summary>
      <value>A brush used to paint the background of alternate rows.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AlternateRowBackgroundPalette">
      <summary>
        <para>Gets or sets a palette used to paint the background of alternate rows. This is a dependency property.</para>
      </summary>
      <value>A palette used to paint the background of alternate rows.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AlternateRowBackgroundPaletteProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AlternateRowBackgroundPalette"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AlternateRowBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AlternateRowBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AlternationCount">
      <summary>
        <para>Gets or sets the alternate row frequency. This is a dependency property.</para>
      </summary>
      <value>An alternate row frequency</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AlternationCountProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AlternationCount"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AutoFilterRowHandle">
      <summary>
        <para>Gets the handle of the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see>.</para>
      </summary>
      <value>The handle of the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see>.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AutoGenerateColumns">
      <summary>
        <para>Gets or sets whether columns should be created automatically for all fields in a data source. This is a dependency property.</para>
      </summary>
      <value>true, to automatically create columns for all fields in a data source; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AutoGenerateColumnsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AutoGenerateColumns">DataControlBase.AutoGenerateColumns</see> dependency property.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.AutoGeneratedColumns">
      <summary>
        <para>Occurs after the columns have been automatically generated.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.AutoGeneratingColumn">
      <summary>
        <para>Occurs each time an individual column is auto-generated.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AutoScrollOnSorting">
      <summary>
        <para>Gets or sets whether a grid is automatically scrolled after the order of rows has been changed. This is a dependency property.</para>
      </summary>
      <value>true to enable automatic row scrolling; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AutoScrollOnSortingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AutoScrollOnSorting">DataControlBase.AutoScrollOnSorting</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.AutoWidth">
      <summary>
        <para>Gets or sets whether column widths are automatically changed so that the total column width matches the grid width.</para>
      </summary>
      <value>true to automatically change column width; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.AutoWidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.AutoWidth"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.BeginDataUpdate">
      <summary>
        <para>Prevents visual and internal data updates until the <see cref="M:DevExpress.WinUI.Grid.DataControlBase.EndDataUpdate">DataControlBase.EndDataUpdate</see> method is called.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.BeginSelection">
      <summary>
        <para>Prevents selection updates until the <see cref="M:DevExpress.WinUI.Grid.DataControlBase.EndSelection">DataControlBase.EndSelection</see> method is called.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.CellToolTipShowMode">
      <summary>
        <para>Gets or sets whether to display cell tooltips. This is a dependency property.</para>
      </summary>
      <value>A value that defines whether to display cell tooltips.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.CellToolTipShowModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.CellToolTipShowMode"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.ClearColumnFilter(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Removes the filter condition applied to the specified column.</para>
      </summary>
      <param name="column">A <see cref="T:DevExpress.WinUI.Grid.ColumnBase"/> descendant that represents the column whose filter is cleared.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.ClearColumnFilter(System.String)">
      <summary>
        <para>Removes the filter condition applied to the specified column.</para>
      </summary>
      <param name="fieldName">A <see cref="T:System.String"/> value that specifies the field name of the column whose filter is cleared.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.ClearSorting">
      <summary>
        <para>Clears the sorting applied to the grid.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ClipboardCopyFormats">
      <summary>
        <para>Gets or sets file formats in which the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> copies its data to the clipboard. This is a dependency property.</para>
      </summary>
      <value>File formats in which the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> copies its data to the clipboard.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ClipboardCopyFormatsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ClipboardCopyFormats"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.Columns">
      <summary>
        <para>Gets a collection of the GridControl’s columns.</para>
      </summary>
      <value>A collection of the GridControl‘s columns.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ColumnsSource">
      <summary>
        <para>Gets or sets a source from which the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> generates columns. This is a dependency property.</para>
      </summary>
      <value>A source from which the GridControl generates columns.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ColumnsSourceProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ColumnsSource"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ColumnTemplate">
      <summary>
        <para>Gets or sets a template that describes grid columns. This is a dependency property.</para>
      </summary>
      <value>A template that describes grid columns.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ColumnTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ColumnTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ColumnTemplateSelector">
      <summary>
        <para>Gets or sets a column template selector. This is a dependency property.</para>
      </summary>
      <value>A column template selector.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ColumnTemplateSelectorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ColumnTemplateSelector"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.Commands">
      <summary>
        <para>Provides access to grid commands. This is a dependency property.</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.DataControlCommandsBase object that provides a set of grid commands.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.CommandsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.Commands">DataControlBase.Commands</see> dependency property.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.CommitEditing">
      <summary>
        <para>Hides the active editor and posts all the changes made within the focused row to a data source if the row values are valid.</para>
      </summary>
      <returns>true, if the values within the focused row’s cells are valid; otherwise, false.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.CopyColumnHeadersToClipboard">
      <summary>
        <para>Gets or sets whether to add column headers to the clipboard when you copy <see cref="T:DevExpress.WinUI.Grid.GridControl"/> data. This is a dependency property.</para>
      </summary>
      <value>true to add column headers to the clipboard when you copy grid data; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.CopyColumnHeadersToClipboardProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.CopyColumnHeadersToClipboard"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.CopyToClipboard">
      <summary>
        <para>Copies selected rows/cells to the clipboard.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.CurrentColumn">
      <summary>
        <para>Gets or sets a column that contains the focused cell.</para>
      </summary>
      <value>A column that contains the focused cell.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.CurrentColumnChanged">
      <summary>
        <para>Occurs after the focused column has been changed.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.CurrentColumnProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.CurrentColumn"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.CurrentItem">
      <summary>
        <para>Gets or sets the currently focused data row.</para>
      </summary>
      <value>A <see cref="T:System.Object"/> specifying the focused row.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.CurrentItemChanged">
      <summary>
        <para>Occurs after the focused row is changed.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.CurrentItemProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.CurrentItem">DataControlBase.CurrentItem</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.CurrentRowHandle">
      <summary>
        <para>Gets or sets the focused row’s handle.</para>
      </summary>
      <value>The focused row’s handle.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.CustomCellAppearance">
      <summary>
        <para>Allows you to customize cell appearance.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.CustomUniqueValues">
      <summary>
        <para>Allows you to specify unique values displayed in a column’s <see href="https://docs.devexpress.com/WinUI/102155/controls/data-grid/filter-data#drop-down-filter">drop-down filter</see>.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.DataContext">
      <summary>
        <para>Gets or sets the control’s data context.</para>
      </summary>
      <value>The control’s data context.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.EndDataUpdate">
      <summary>
        <para>Enables visual and internal data updates after the <see cref="M:DevExpress.WinUI.Grid.DataControlBase.BeginDataUpdate">DataControlBase.BeginDataUpdate</see> method call, and updates the grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.EndSelection">
      <summary>
        <para>Enables selection updates after calling the <see cref="M:DevExpress.WinUI.Grid.DataControlBase.BeginSelection">DataControlBase.BeginSelection</see> method, and forces an immediate update.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.FilterChanged">
      <summary>
        <para>Occurs after the grid’s filter has been changed.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FilterCriteria">
      <summary>
        <para>Gets or sets the grid’s filter criteria. This is a dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.FilterCriteriaProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.FilterCriteria">DataControlBase.FilterCriteria</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FilteringContext">
      <summary>
        <para>Gets the context that binds a filter item to the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s data.</para>
      </summary>
      <value>The context that binds a filter item to the GridControl’s data.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FilterPanelText">
      <summary>
        <para>Gets the text displayed within the <see href="https://docs.devexpress.com/WinUI/102247/controls/data-grid/visual-elements/filter-panel">Filter Panel</see>. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.String"/> value that specifies the text displayed within the filter panel.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.FilterPanelTextProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.FilterPanelText">DataControlBase.FilterPanelText</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FilterString">
      <summary>
        <para>Gets or sets the grid’s filter expression. This is a dependency property.</para>
      </summary>
      <value>The GridControl’s filter expression.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.FilterStringProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.FilterString">DataControlBase.FilterString</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FixedSummariesLeft">
      <summary>
        <para>Gets total summaries displayed within the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see> and aligned to the left.</para>
      </summary>
      <value>A list of <see cref="T:DevExpress.WinUI.Grid.GridTotalSummaryData"/> objects that contain information on total summaries.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FixedSummariesRight">
      <summary>
        <para>Gets total summaries displayed within the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see> and aligned to the right.</para>
      </summary>
      <value>A list of <see cref="T:DevExpress.WinUI.Grid.GridTotalSummaryData"/> objects that contain information on total summaries.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FixedTotalSummaryItemTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of total summary items in the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see>. This is a dependency property.</para>
      </summary>
      <value>A template that defines the appearance of total summary items in the Fixed Summary Panel. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.GridTotalSummaryData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.FixedTotalSummaryItemTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.FixedTotalSummaryItemTemplate">DataControlBase.FixedTotalSummaryItemTemplate</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FontFamily">
      <summary>
        <para>Gets or sets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s font family.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s font family.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FontSize">
      <summary>
        <para>Gets or sets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s font size.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s font size.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FontStretch">
      <summary>
        <para>Gets or sets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s font stretch.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s font stretch.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FontStyle">
      <summary>
        <para>Gets or sets a text style applied to the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</para>
      </summary>
      <value>A text style applied to the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FontWeight">
      <summary>
        <para>Gets or sets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s font weight.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s font weight.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.Foreground">
      <summary>
        <para>Gets or sets a brush that paints the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s foreground.</para>
      </summary>
      <value>A brush that paints the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s foreground.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.FormatConditions">
      <summary>
        <para>Stores conditional formats applied to the GridControl.</para>
      </summary>
      <value>A collection of conditional formats applied to the GridControl.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.GetCellElementByRowHandleAndColumn(System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Returns the specified cell’s UI element.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the row’s handle.</param>
      <param name="column">A <see cref="T:DevExpress.WinUI.Grid.ColumnBase"/> descendant that specifies the column containing the cell.</param>
      <returns>A <see cref="T:Microsoft.UI.Xaml.FrameworkElement"/> descendant that specifies the cell’s UI element.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.GetColumnFilterCriteria(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Returns a filter applied to the specified column.</para>
      </summary>
      <param name="column">A <see cref="T:DevExpress.WinUI.Grid.ColumnBase"/> descendant that represents the grid column.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.GetColumnFilterCriteria(System.String)">
      <summary>
        <para>Returns a filter applied to the specified column.</para>
      </summary>
      <param name="fieldName">A <see cref="T:System.String"/> value that specifies the column’s field name.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.GetColumnFilterString(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Returns a filter expression applied to the specified column.</para>
      </summary>
      <param name="column">A <see cref="T:DevExpress.WinUI.Grid.ColumnBase"/> descendant that represents the column.</param>
      <returns>A <see cref="T:System.String"/> value that specifies the specified column’s filter expression.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.GetColumnFilterString(System.String)">
      <summary>
        <para>Returns a filter expression applied to the specified column.</para>
      </summary>
      <param name="fieldName">A <see cref="T:System.String"/> value that specifies the column’s field name.</param>
      <returns>A <see cref="T:System.String"/> value that specifies the specified column’s filter expression.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.GetRowElementByRowHandle(System.Int32)">
      <summary>
        <para>Returns a UI element that is the specified row.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the row’s handle.</param>
      <returns>A <see cref="T:Microsoft.UI.Xaml.FrameworkElement"/> descendant that is the specified row.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.GetTotalSummaryValue(DevExpress.WinUI.Grid.SummaryItemBase)">
      <summary>
        <para>Returns the value of the specified total summary item.</para>
      </summary>
      <param name="item">A <see cref="T:DevExpress.WinUI.Grid.SummaryItemBase"/> descendant that represents the total summary item.</param>
      <returns>Returns the value of the specified total summary item.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.HasValidationError">
      <summary>
        <para>Gets whether a validation error has been defined for the grid. This is a dependency property.</para>
      </summary>
      <value>true if a validation error is defined for the grid; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.HasValidationErrorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.HasValidationError">DataControlBase.HasValidationError</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.HeaderToolTipShowMode">
      <summary>
        <para>Gets or sets whether to display column header tooltips. This is a dependency property.</para>
      </summary>
      <value>A value that defines whether to display column header tooltips.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.HeaderToolTipShowModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.HeaderToolTipShowMode"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.HideEditor">
      <summary>
        <para>Closes the active editor, discarding all the changes made.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.HighlightRowOnHover">
      <summary>
        <para>Gets or sets whether to highlight a row when a user hovers a mouse pointer over this row.</para>
      </summary>
      <value>true to highlight a row when a user hovers a mouse pointer over this row; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.HighlightRowOnHoverProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.HighlightRowOnHover"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.HorizontalScrollBarVisibility">
      <summary>
        <para>Gets or sets the horizontal scrollbar’s visibility. This is a dependence property.</para>
      </summary>
      <value>The horizontal scrollbar’s visibility.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.HorizontalScrollBarVisibilityProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.HorizontalScrollBarVisibility"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ImplyNullLikeEmptyStringWhenFilteringProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ImplyNullLikeEmptyStringWhenFiltering"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.IncrementalLoadingThreshold">
      <summary>
        <para>Gets or sets the threshold range that governs when the grid will begin to prefetch more row items. This is a dependency property.</para>
      </summary>
      <value>The loading threshold. By default, 0.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.IncrementalLoadingThresholdProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.IncrementalLoadingThreshold">DataControlBase.IncrementalLoadingThreshold</see> dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.InvalidRowHandle">
      <summary>
        <para>Gets the handle of a row which does not exist in a grid.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.InvalidRowIndex">
      <summary>
        <para>Gets the index of a row which does not exist in the GridControl.</para>
      </summary>
      <value>The index of a row which does not exist in the GridControl.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.IsCellSelected(System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Indicates whether the specified cell is selected.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the row’s handle.</param>
      <param name="column">A <see cref="T:DevExpress.WinUI.Grid.ColumnBase"/> descendant that represents the column which contains the cell.</param>
      <returns>true if the specified cell is selected; otherwise, false.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.IsEditing">
      <summary>
        <para>Gets whether the focused cell is currently being edited. This is a dependency property.</para>
      </summary>
      <value>true if the grid is in edit mode; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.IsFilterEnabled">
      <summary>
        <para>Gets or sets whether the current filter is enabled. This is a dependency property.</para>
      </summary>
      <value>true to enable the current filter; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.IsFilterEnabledProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.IsFilterEnabled">DataControlBase.IsFilterEnabled</see> dependency property.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.IsRowSelected(System.Int32)">
      <summary>
        <para>Indicates whether the specified row is selected.</para>
      </summary>
      <param name="rowHandle">The row’s handle</param>
      <returns>true if the specified row is selected; otherwise, false.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.IsSearchPanelVisible">
      <summary>
        <para>Gets whether the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see>.</para>
      </summary>
      <value>true if the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see>; otherwise false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.IsSearchPanelVisibleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.IsSearchPanelVisible"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.IsSynchronizedWithCurrentItem">
      <summary>
        <para>Gets or sets whether a grid should keep the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SelectedItem">DataControlBase.SelectedItem</see> synchronized with the current item in the <see cref="T:Microsoft.UI.Xaml.Data.ICollectionView"/>. This is a dependency property.</para>
      </summary>
      <value>true to always synchronize the focused row with the current item in the <see cref="T:Microsoft.UI.Xaml.Data.ICollectionView"/> assigned to the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ItemsSource">DataControlBase.ItemsSource</see>; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.IsSynchronizedWithCurrentItemProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.IsSynchronizedWithCurrentItem">DataControlBase.IsSynchronizedWithCurrentItem</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ItemsSource">
      <summary>
        <para>Gets or sets the grid’s data source. This is a dependency property.</para>
      </summary>
      <value>An object that represents the data source from which the grid retrieves its data.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.ItemsSourceChanged">
      <summary>
        <para>Occurs after the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ItemsSource">DataControlBase.ItemsSource</see> property has been changed.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ItemsSourceProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ItemsSource">DataControlBase.ItemsSource</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.LineBrush">
      <summary>
        <para>Gets or sets a brush that paints <see href="https://docs.devexpress.com/WinUI/403839/controls/data-grid/visual-elements/grid-lines">grid lines</see>.</para>
      </summary>
      <value>A brush that paints grid lines.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.LineBrushProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.LineBrush"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MergeColumnFilters(DevExpress.Data.Filtering.CriteriaOperator)">
      <summary>
        <para>Combines the specified filter with the grid’s current filter with the AND operator.</para>
      </summary>
      <param name="filterCriteria">The filter expression.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MergeColumnFilters(System.String)">
      <summary>
        <para>Combines the specified filter with the grid’s current filter with the AND operator.</para>
      </summary>
      <param name="filterString">The filter expression.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MoveColumnTo(DevExpress.WinUI.Grid.ColumnBase,System.Int32)">
      <summary>
        <para>Moves the specified column to the specified position.</para>
      </summary>
      <param name="source">A <see cref="T:DevExpress.WinUI.Grid.ColumnBase"/> object that represents the source column.</param>
      <param name="newVisibleIndex">An integer value that specifies the column’s new position among the columns displayed within the destination area.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MoveFirstRow">
      <summary>
        <para>Moves focus to the first visible row within a grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MoveLastRow">
      <summary>
        <para>Moves focus to the last visible row within a grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MoveNextPage">
      <summary>
        <para>Moves focus forward to the bottom row displayed onscreen within a grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MoveNextRow">
      <summary>
        <para>Moves focus to the row following the one currently focused.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MovePrevPage">
      <summary>
        <para>Moves focus backward to the top row displayed onscreen within a grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.MovePrevRow(System.Boolean)">
      <summary>
        <para>Moves focus to the row that precedes the focused row, and specifies whether this method can focus the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see>.</para>
      </summary>
      <param name="allowNavigateToAutoFilterRow">true if this method can focus the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see>; otherwise, false.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.NavigationStyle">
      <summary>
        <para>Gets or sets whether to allow users to focus rows and cells. This is a dependency property.</para>
      </summary>
      <value>A value that specifies whether to allow users to focus rows and cells.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.NavigationStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.NavigationStyle">DataControlBase.NavigationStyle</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.NewItemRowHandle">
      <summary>
        <para>Gets the handle of the <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>.</para>
      </summary>
      <value>The handle of the <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.NewItemRowPosition">
      <summary>
        <para>Gets or sets the <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>‘s position within the grid. This is a dependency property.</para>
      </summary>
      <value>The <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>‘s position within the grid.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.NewItemRowPositionProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.NewItemRowPosition"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.PasteFromClipboard">
      <summary>
        <para>Pastes clipboard data to the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.PasteMode">
      <summary>
        <para>Gets or sets how to paste rows from the clipboard to the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>. This is a dependency property.</para>
      </summary>
      <value>Specifies how to paste rows from the clipboard to the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.PasteModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.PasteMode"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.PostEditor">
      <summary>
        <para>Saves the active editor’s value to a data source without closing the editor.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.PredefinedFormats">
      <summary>
        <para>Contains predefined formats used in conditional formatting rules. This is a dependency property.</para>
      </summary>
      <value>A collection of predefined formats.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.PredefinedFormatsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.PredefinedFormats"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.PreserveSorting">
      <summary>
        <para>Gets or sets whether clicking a column header clears the existing sort settings. This is a dependency property.</para>
      </summary>
      <value>true, to preserve sorting by other columns when clicking a column header; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.PreserveSortingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.PreserveSorting">DataControlBase.PreserveSorting</see> dependency property.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.RefreshData">
      <summary>
        <para>Updates the control data.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorHeaderTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">row indicator header</see>.</para>
      </summary>
      <value>A template that defines the appearance of the row indicator header. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.HeaderRowData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorHeaderTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorHeaderTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorStyleSettings">
      <summary>
        <para>Gets or sets style settings applied to the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>.</para>
      </summary>
      <value>Style settings applied to the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorStyleSettingsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorStyleSettings"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">row indicator cells</see>.</para>
      </summary>
      <value>A template that defines the appearance of row indicator cells. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.RowDataBase"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorWidth">
      <summary>
        <para>Gets or sets the width of the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>.</para>
      </summary>
      <value>The width of the row indicator panel in pixels.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorWidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.RowIndicatorWidth"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.RowMinHeight">
      <summary>
        <para>Gets or sets a data row’s minimum height.</para>
      </summary>
      <value>A data row’s minimum height.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.RowMinHeightProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.RowMinHeight"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.RowStyleSettings">
      <summary>
        <para>Gets or sets style settings applied to grid rows.</para>
      </summary>
      <value>Style settings applied to grid rows.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.RowStyleSettingsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.RowStyleSettings"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.ScrollIntoView(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Makes the specified column visible onscreen.</para>
      </summary>
      <param name="column">The required column.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.ScrollIntoView(System.Int32)">
      <summary>
        <para>Makes the specified row visible onscreen.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the row’s handle.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.ScrollIntoView(System.Object)">
      <summary>
        <para>Makes the specified row visible onscreen.</para>
      </summary>
      <param name="row">A data object that corresponds to the required row.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchColumns">
      <summary>
        <para>Gets or sets the field names against which searches are performed by the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see>. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.String"/> value specifying field names against which searches are performed.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchColumnsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchColumns">DataControlBase.SearchColumns</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchDelay">
      <summary>
        <para>Gets or sets the amount of time in milliseconds, after which a data search is initiated (in an automatic find mode). This is a dependency property.</para>
      </summary>
      <value>An integer that specifies the delay in milliseconds, after which a data search is initiated.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchDelayProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchDelay">DataControlBase.SearchDelay</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelAllowFilter">
      <summary>
        <para>Gets or sets whether the grid displays only those records that match the search criteria. This is a dependency property.</para>
      </summary>
      <value>true to display only those records that match the search criteria; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchPanelAllowFilterProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelAllowFilter">DataControlBase.SearchPanelAllowFilter</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelClearOnClose">
      <summary>
        <para>Gets or sets whether to clear the search string when the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see> is closed. This is a dependency property.</para>
      </summary>
      <value>true to clear the search string when the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see> is closed; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchPanelClearOnCloseProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelClearOnClose">DataControlBase.SearchPanelClearOnClose</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelCriteriaOperatorType">
      <summary>
        <para>Gets or sets the logical operator type (AND or OR). This is a dependency property.</para>
      </summary>
      <value>The criteria operator type (logical AND or OR).</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchPanelCriteriaOperatorTypeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelCriteriaOperatorType">DataControlBase.SearchPanelCriteriaOperatorType</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelFindFilter">
      <summary>
        <para>Gets or sets the type of the comparison operator used to create filter conditions. This is a dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchPanelFindFilterProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelFindFilter">DataControlBase.SearchPanelFindFilter</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelFindMode">
      <summary>
        <para>Gets or sets whether data searching starts automatically, or must be started manually. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.FindMode"/> enumeration value that specifies the find mode.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchPanelFindModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelFindMode">DataControlBase.SearchPanelFindMode</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelHighlightResults">
      <summary>
        <para>Gets or sets whether to highlight search results within located records. This is a dependency property.</para>
      </summary>
      <value>true to highlight search results; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchPanelHighlightResultsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelHighlightResults">DataControlBase.SearchPanelHighlightResults</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelHighlightSettings">
      <summary>
        <para>Gets or sets settings applied to search results.</para>
      </summary>
      <value>Settings applied to search results.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchPanelHighlightSettingsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchPanelHighlightSettings"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SearchString">
      <summary>
        <para>Gets or sets the search string specified within the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see>. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.String"/> value that specifies the search string.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SearchStringProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SearchString">DataControlBase.SearchString</see> dependency property.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SelectAll">
      <summary>
        <para>Selects all items within a grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SelectCell(System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Selects the specified cell.</para>
      </summary>
      <param name="rowHandle">The handle of the row that contains the cell.</param>
      <param name="column">The column that contains the cell.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SelectCells(System.Int32,DevExpress.WinUI.Grid.ColumnBase,System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Selects multiple cells.</para>
      </summary>
      <param name="startRowHandle">The handle of the row that contains the first selected cell.</param>
      <param name="startColumn">The column that contains the first selected cell.</param>
      <param name="endRowHandle">The handle of the row that contains the last selected cell.</param>
      <param name="endColumn">The column that contains the last selected cell.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SelectedItem">
      <summary>
        <para>Get or sets the currently focused data item.</para>
      </summary>
      <value>A <see cref="T:System.Object"/> specifying the focused row.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SelectedItemProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SelectedItem">DataControlBase.SelectedItem</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SelectedItems">
      <summary>
        <para>Gets data objects that correspond to items currently selected within a grid.</para>
      </summary>
      <value>The list which contains data objects corresponding to selected items.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SelectedItemsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SelectedItems">DataControlBase.SelectedItems</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SelectionMode">
      <summary>
        <para>Gets or sets whether multiple row/cell selection is enabled. This is a dependency property.</para>
      </summary>
      <value>The multiple selection mode.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SelectionModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SelectionMode">DataControlBase.SelectionMode</see> dependency property.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SelectItem(System.Int32)">
      <summary>
        <para>Selects the specified row.</para>
      </summary>
      <param name="rowHandle">The handle of the row to select.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SelectItem(System.Object)">
      <summary>
        <para>Selects the specified item.</para>
      </summary>
      <param name="item">An object that is the item to select.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SelectRange(System.Int32,System.Int32)">
      <summary>
        <para>Selects multiple items, while preserving the current selection (if any).</para>
      </summary>
      <param name="startRowHandle">An integer value specifying the item handle at which the selection starts.</param>
      <param name="endRowHandle">An integer value specifying the item handle at which the selection ends.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowAutoFilterRow">
      <summary>
        <para>Gets or sets whether to display the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see>.</para>
      </summary>
      <value>true to display the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see>; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowAutoFilterRowProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowAutoFilterRow"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowColumnHeaders">
      <summary>
        <para>Gets or sets whether a grid displays column headers. This is a dependency property.</para>
      </summary>
      <value>true to show column headers within a grid; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowColumnHeadersProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowColumnHeaders">DataControlBase.ShowColumnHeaders</see> dependency property.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.ShowEditor">
      <summary>
        <para>Activates the focused cell’s inplace editor.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowFilterPanelMode">
      <summary>
        <para>Gets or sets when the <see href="https://docs.devexpress.com/WinUI/102247/controls/data-grid/visual-elements/filter-panel">Filter Panel</see> is displayed within a grid. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.ShowFilterPanelMode"/> enumeration value that specifies when a grid displays the Filter Panel.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowFilterPanelModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowFilterPanelMode">DataControlBase.ShowFilterPanelMode</see> dependency property.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.DataControlBase.ShowFilterPopup">
      <summary>
        <para>Enables you to customize a column’s <see href="https://docs.devexpress.com/WinUI/102155/controls/data-grid/filter-data#drop-down-filter">drop-down filter</see>.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowFixedTotalSummary">
      <summary>
        <para>Gets or sets whether or not the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see> is displayed within the grid. This is a dependency property.</para>
      </summary>
      <value>true to display the Fixed Summary Panel within the grid; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowFixedTotalSummaryProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowFixedTotalSummary">DataControlBase.ShowFixedTotalSummary</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowHorizontalLines">
      <summary>
        <para>Gets or sets whether to display horizontal <see href="https://docs.devexpress.com/WinUI/403839/controls/data-grid/visual-elements/grid-lines">grid lines</see>.</para>
      </summary>
      <value>true to display horizontal grid lines; otherwise, false</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowHorizontalLinesProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowHorizontalLines"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowLoadingPanel">
      <summary>
        <para>Gets or sets whether to display the Loading Panel in the GridControl when it waits for a callback response. This is a dependency property.</para>
      </summary>
      <value>true to display a Loading Panel in the GridControl when it waits for a callback response; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowLoadingPanelProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowLoadingPanel"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowRowIndicator">
      <summary>
        <para>Gets or sets whether to display the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>.</para>
      </summary>
      <value>true to display the row indicator panel; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowRowIndicatorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowRowIndicator"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowSearchPanelMode">
      <summary>
        <para>Gets or sets when the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see> is shown within the grid. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.ShowSearchPanelMode"/> enumeration value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowSearchPanelModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowSearchPanelMode">DataControlBase.ShowSearchPanelMode</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowTotalSummary">
      <summary>
        <para>Gets or sets whether to display the total summary panel.</para>
      </summary>
      <value>true, to show the summary panel within the grid; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowTotalSummaryProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowTotalSummary">DataControlBase.ShowTotalSummary</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ShowVerticalLines">
      <summary>
        <para>Gets or sets whether to display vertical <see href="https://docs.devexpress.com/WinUI/403839/controls/data-grid/visual-elements/grid-lines">grid lines</see>.</para>
      </summary>
      <value>true to display vertical grid lines; otherwise, false</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ShowVerticalLinesProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ShowVerticalLines"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SortBy(DevExpress.WinUI.Grid.ColumnBase,DevExpress.Data.ColumnSortOrder,System.Int32)">
      <summary>
        <para>Sorts data by the values of the specified column in the specified order, and places the column at the specified position among the sorted columns.</para>
      </summary>
      <param name="column">The grid column.</param>
      <param name="sortedOrder">The column’s sort order.</param>
      <param name="sortedIndex">The column’s sort index.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SortBy(DevExpress.WinUI.Grid.ColumnBase,DevExpress.Data.ColumnSortOrder)">
      <summary>
        <para>Sorts data by the values of the specified column in the specified order.</para>
      </summary>
      <param name="column">The grid column.</param>
      <param name="sortedOrder">The column’s sort order.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SortBy(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Sorts data by the values of the specified column.</para>
      </summary>
      <param name="column">The grid column.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SortBy(System.String,DevExpress.Data.ColumnSortOrder)">
      <summary>
        <para>Sorts data by the values of the specified column in the specified order.</para>
      </summary>
      <param name="fieldName">The column’s field name.</param>
      <param name="sortedOrder">The column’s sort order.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.SortBy(System.String)">
      <summary>
        <para>Sorts data by the values of the specified column.</para>
      </summary>
      <param name="fieldName">The column’s field name.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.SummariesIgnoreNullValues">
      <summary>
        <para>Gets or sets whether null values must be ignored when calculating data summaries. This is a dependency property.</para>
      </summary>
      <value>true to ignore null values when calculating data summaries; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.SummariesIgnoreNullValuesProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.SummariesIgnoreNullValues">DataControlBase.SummariesIgnoreNullValues</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.TopRowIndex">
      <summary>
        <para>Gets or sets the index of the top visible row.</para>
      </summary>
      <value>An integer value that specifies the index of the top visible row.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.TopRowIndexProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.TopRowIndex"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.TotalSummaryItemTemplate">
      <summary>
        <para>Gets or sets the template that defines the presentation of total summary items. This is a dependency property.</para>
      </summary>
      <value>The template that defines the presentation of total summary items.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.TotalSummaryItemTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.TotalSummaryItemTemplate">DataControlBase.TotalSummaryItemTemplate</see> dependency property.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.UnselectAll">
      <summary>
        <para>Unselects any selected items within a grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.UnselectCell(System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Unselects the specified cell.</para>
      </summary>
      <param name="rowHandle">The handle of the row that contains the cell.</param>
      <param name="column">The column that contains the cell.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.UnselectCells(System.Int32,DevExpress.WinUI.Grid.ColumnBase,System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Unselects multiple cells.</para>
      </summary>
      <param name="startRowHandle">The handle of the row that contains the first unselected cell.</param>
      <param name="startColumn">The column that contains the first unselected cell.</param>
      <param name="endRowHandle">The handle of the row that contains the last unselected cell.</param>
      <param name="endColumn">The column that contains the last unselected cell.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.UnselectItem(System.Int32)">
      <summary>
        <para>Unselects the specified row.</para>
      </summary>
      <param name="rowHandle">The row’s handle.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.UnselectItem(System.Object)">
      <summary>
        <para>Unselects the specified item.</para>
      </summary>
      <param name="item">An object that is the item to unselect.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.DataControlBase.UpdateTotalSummary">
      <summary>
        <para>Updates total summaries.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.ValidationError">
      <summary>
        <para>Provides access to the object, which contains information about the validation error. This is a dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.ValidationErrorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.ValidationError">DataControlBase.ValidationError</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.VerticalScrollBarVisibility">
      <summary>
        <para>Gets or sets the vertical scrollbar’s visibility. This is a dependence property.</para>
      </summary>
      <value>The vertical scrollbar’s visibility.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.VerticalScrollBarVisibilityProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.VerticalScrollBarVisibility"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.VisibleColumns">
      <summary>
        <para>Gets a list of visible columns. This is a dependency property.</para>
      </summary>
      <value>A list of visible columns.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.DataControlBase.VisibleColumnsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.DataControlBase.VisibleColumns"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlBase.VisibleRowCount">
      <summary>
        <para>Gets the total number of rows displayed within the grid.</para>
      </summary>
      <value>An integer value that specifies the total number of rows displayed within the grid.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.DataControlCommandsBase">
      <summary>
        <para>Contains built-in commands for data-aware controls (the <see cref="T:DevExpress.WinUI.Grid.DataControlBase"/> descendants).</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.ClearFilter">
      <summary>
        <para>Clears the filter expression.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.HideSearchPanel">
      <summary>
        <para>Hides the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see>.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.MoveFirstRow">
      <summary>
        <para>Moves focus to the first visible row.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.MoveLastRow">
      <summary>
        <para>Moves focus to the last visible row.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.MoveNextPage">
      <summary>
        <para>Moves focus forward by the number of rows displayed onscreen.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.MoveNextRow">
      <summary>
        <para>Moves focus to the row that follows the focused row.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.MovePrevPage">
      <summary>
        <para>Moves focus backward by the number of rows displayed onscreen.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.MovePrevRow">
      <summary>
        <para>Moves focus to the row that precedes the focused row.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.DataControlCommandsBase.ShowSearchPanel">
      <summary>
        <para>Displays the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see>.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.EditorEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.ShownEditor"/> and <see cref="E:DevExpress.WinUI.Grid.GridControl.HiddenEditor"/> events.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.EditorEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.Int32,DevExpress.WinUI.Grid.ColumnBase,Microsoft.UI.Xaml.Controls.Control)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.EditorEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.EditorEventArgs.Row">
      <summary>
        <para>Gets the processed row.</para>
      </summary>
      <value>The processed row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.EditorEventArgs.RowHandle">
      <summary>
        <para>Gets the processed row’s handle.</para>
      </summary>
      <value>The processed row’s handle.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.EditorEventArgs.Value">
      <summary>
        <para>Gets the processed cell’s value.</para>
      </summary>
      <value>The processed cell’s value.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.EditorEventArgsBase">
      <summary>
        <para>Serves as a base class for the <see cref="T:DevExpress.WinUI.Grid.EditorEventArgs"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.EditorEventArgsBase.Column">
      <summary>
        <para>Gets the grid column.</para>
      </summary>
      <value>The grid column.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.EditorEventArgsBase.Editor">
      <summary>
        <para>Gets the processed cell’s editor.</para>
      </summary>
      <value>The processed cell’s editor.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ExceptionMode">
      <summary>
        <para>Lists values that specify how an exception should be handled.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ExceptionMode.DisplayError">
      <summary>
        <para>Displays a message box, with an error description specified by the <see cref="P:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs.ErrorText">InvalidRowExceptionEventArgs.ErrorText</see> property. The message box’s caption can be specified using the <see cref="P:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs.WindowCaption">InvalidRowExceptionEventArgs.WindowCaption</see> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ExceptionMode.Ignore">
      <summary>
        <para>An exception is ignored.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ExceptionMode.NoAction">
      <summary>
        <para>Displays an error icon and allows an end-user to correct or reset an invalid value.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ExceptionMode.ThrowException">
      <summary>
        <para>Throws an exception specified by the <see cref="P:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs.Exception">InvalidRowExceptionEventArgs.Exception</see> property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FetchEventArgsBase">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.FetchRows"/> event.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FetchEventArgsBase.Filter">
      <summary>
        <para>Gets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s filter.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s filter.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FetchEventArgsBase.Skip">
      <summary>
        <para>Gets the number of rows to skip in a returned result set.</para>
      </summary>
      <value>The number of rows to skip in a returned result set.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FetchEventArgsBase.SkipToken">
      <summary>
        <para>Gets the skip token.</para>
      </summary>
      <value>The skip token.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FetchEventArgsBase.SortOrder">
      <summary>
        <para>Gets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s sort options.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s sort options.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FetchMode">
      <summary>
        <para>Lists values that specify how the <see cref="T:DevExpress.WinUI.Grid.InfiniteAsyncSource"/> fetches rows.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FetchMode.Auto">
      <summary>
        <para>The virtual source loads rows when the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays the last loaded row.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FetchMode.Manual">
      <summary>
        <para>The virtual source loads rows when you call the <see cref="M:DevExpress.WinUI.Grid.InfiniteSourceBase.FetchMoreRows">InfiniteSourceBase.FetchMoreRows</see> method.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FetchRowsAsyncEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.FetchRows"/> event.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FetchRowsEventArgsBase">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.FetchRows"/> event.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FetchRowsEventArgsBase.AllowRetry">
      <summary>
        <para>Gets or sets whether to allow the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> to re-request data.</para>
      </summary>
      <value>true to allow the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> to re-request data; otherwise, false.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FetchRowsResult">
      <summary>
        <para>The result of the fetch rows operation.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.FetchRowsResult.#ctor(System.Object[],System.Boolean,System.Object)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.FetchRowsResult"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FetchRowsResult.HasMoreRows">
      <summary>
        <para>Gets whether a data source has more rows.</para>
      </summary>
      <value>true if a data source has more rows; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FetchRowsResult.NextSkipToken">
      <summary>
        <para>Gets the next skip token.</para>
      </summary>
      <value>The next skip token.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.FetchRowsResult.op_Implicit(System.Object[])~DevExpress.WinUI.Grid.FetchRowsResult">
      <summary>
        <para>The implicit conversion operator.</para>
      </summary>
      <param name="rows">Fetched rows.</param>
      <returns>The result of the fetch rows operation.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FetchRowsResult.Rows">
      <summary>
        <para>Gets fetched rows.</para>
      </summary>
      <value>Fetched rows.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FilterPopupEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.DataControlBase.ShowFilterPopup"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.FilterPopupEventArgs.#ctor(DevExpress.WinUI.Grid.DataControlBase,DevExpress.WinUI.Grid.ColumnBase,Microsoft.UI.Xaml.Controls.ListBox)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.FilterPopupEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FilterPopupEventArgs.Column">
      <summary>
        <para>Gets a column for which a user opens the drop-down filter.</para>
      </summary>
      <value>A column for which a user opens the drop-down filter.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FilterPopupEventArgs.ListBox">
      <summary>
        <para>Gets the drop-down filter for which <see cref="P:DevExpress.WinUI.Grid.ColumnBase.FilterPopupMode"/> is set to List.</para>
      </summary>
      <value>The drop-down filter for which <see cref="P:DevExpress.WinUI.Grid.ColumnBase.FilterPopupMode"/> is set to List.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FilterPopupEventArgs.Source">
      <summary>
        <para>Gets the control that raised the event.</para>
      </summary>
      <value>The control that raised the event.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FilterPopupMode">
      <summary>
        <para>Lists values that specify the display mode of a column’s <see href="https://docs.devexpress.com/WinUI/102155/controls/data-grid/filter-data#drop-down-filter">drop-down filter</see>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.Custom">
      <summary>
        <para>A custom template assigned to the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.CustomColumnFilterPopupTemplate">ColumnBase.CustomColumnFilterPopupTemplate</see> property specifies the drop-down filter.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.Date">
      <summary>
        <para>A date-time drop-down filter with a set of predefined values.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.DateAlt">
      <summary>
        <para>A date-time drop-down filter with an alternative set of predefined values.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.DateCompact">
      <summary>
        <para>A date-time drop-down filter without predefined values.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.DateSmart">
      <summary>
        <para>A date-time drop-down filter with a set of predefined values that are based on the column’s data.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.Default">
      <summary>
        <para>An <see href="https://docs.devexpress.com/WinUI/403846/controls/data-grid/filter-data/excel-style-filter">Excel-style drop-down filter</see>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.Disabled">
      <summary>
        <para>Hides the Show Drop-down Filter button from the column’s header.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.Excel">
      <summary>
        <para>An <see href="https://docs.devexpress.com/WinUI/403846/controls/data-grid/filter-data/excel-style-filter">Excel-style drop-down filter</see>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FilterPopupMode.List">
      <summary>
        <para>A list of items (one item at a time can be selected).</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FindMode">
      <summary>
        <para>Lists values that specify when data searching starts.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FindMode.Always">
      <summary>
        <para>A control starts searching data automatically, after a small delay.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FindMode.FindOnEnter">
      <summary>
        <para>A control starts searching data on pressing ENTER.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.Format">
      <summary>
        <para>Contains appearance settings for <see href="https://docs.devexpress.com/WinUI/101446/controls/data-grid/conditional-formatting">conditional formatting</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.Format.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.Format"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.Format.Background">
      <summary>
        <para>Gets or sets the brush used to paint the background of the formatted cell. This is a dependency property.</para>
      </summary>
      <value>A Microsoft.UI.Xaml.Media.Brush object used to paint the background of the formatted cell.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.Format.BackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.Format.Background"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.Format.FontFamily">
      <summary>
        <para>Gets or sets the font family name for the formatted grid cells. This is a dependency property.</para>
      </summary>
      <value>A Microsoft.UI.Xaml.Media.FontFamily object that represents the font family.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.Format.FontFamilyProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.Format.FontFamily"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.Format.FontSize">
      <summary>
        <para>Gets or sets the font size for the formatted cells. This is a dependency property.</para>
      </summary>
      <value>A Double value that represents the font size.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.Format.FontSizeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.Format.FontSize"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.Format.FontStretch">
      <summary>
        <para>Gets or sets the font stretch for the formatted cells. This is a dependency property.</para>
      </summary>
      <value>A Windows.UI.Text.FontStretch value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.Format.FontStretchProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.Format.FontStretch"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.Format.FontStyle">
      <summary>
        <para>Gets or sets the text style applied to the formatted cells. This is a dependency property.</para>
      </summary>
      <value>A Windows.UI.Text.FontStyle value that represents the font style.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.Format.FontStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.Format.FontStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.Format.FontWeight">
      <summary>
        <para>Gets or sets the weight of the text font for the formatted cells. This is a dependency property.</para>
      </summary>
      <value>A Windows.UI.Text.FontWeight value that represents the font weight.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.Format.FontWeightProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.Format.FontWeight"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.Format.Foreground">
      <summary>
        <para>Gets or sets the brush used to paint the foreground of the formatted cell. This is a dependency property.</para>
      </summary>
      <value>A Microsoft.UI.Xaml.Media.Brush object used to paint the foreground of the formatted cell.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.Format.ForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.Format.Foreground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FormatCondition">
      <summary>
        <para>Represents a <see href="https://docs.devexpress.com/WinUI/101446/controls/data-grid/conditional-formatting">conditional format</see> based on a formula.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.FormatCondition.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.FormatCondition"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatCondition.Expression">
      <summary>
        <para>Specifies the expression used to apply a conditional format. This is a dependency property.</para>
      </summary>
      <value>A string value that specifies the expression used to apply a conditional format.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatCondition.ExpressionProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Expression">FormatCondition.Expression</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatCondition.Format">
      <summary>
        <para>Specifies the custom formatting settings. This is a dependency property.</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.Format object that defines the formatting settings.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatCondition.FormatProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Format">FormatCondition.Format</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatCondition.Value1">
      <summary>
        <para>The lowest value in the column’s data range. This is a dependency property.</para>
      </summary>
      <value>An object that is the lowest value in the data range.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatCondition.Value1Property">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value1">FormatCondition.Value1</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatCondition.Value2">
      <summary>
        <para>The largest value in the column’s data range. This is a dependency property.</para>
      </summary>
      <value>An object that is the largest value in the data range.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatCondition.Value2Property">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.Value2">FormatCondition.Value2</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatCondition.ValueRule">
      <summary>
        <para>Specifies the rule for conditional formatting. This is a dependency property.</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.ConditionRule enumeration value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatCondition.ValueRuleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatCondition.ValueRule">FormatCondition.ValueRule</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FormatConditionBase">
      <summary>
        <para>Serves as a base class for <see href="https://docs.devexpress.com/WinUI/101446/controls/data-grid/conditional-formatting">conditional formats</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.FormatConditionBase.#ctor(Microsoft.UI.Xaml.DependencyProperty)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.FormatConditionBase"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatConditionBase.ActualFormat">
      <summary>
        <para>Returns the actual appearance settings used by the conditional formatting rule.</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.FormatBase descendant.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatConditionBase.ActualFormatProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatConditionBase.ActualFormat"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatConditionBase.ApplyToRow">
      <summary>
        <para>Specifies whether to apply a conditional format to the entire row. This is a dependency property.</para>
      </summary>
      <value>true, to apply a conditional format to the entire row; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatConditionBase.ApplyToRowProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatConditionBase.ApplyToRow">FormatConditionBase.ApplyToRow</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatConditionBase.FieldName">
      <summary>
        <para>Specifies the data source field name of the column to which to apply the conditional format. This is a dependency property.</para>
      </summary>
      <value>The data source field name.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatConditionBase.FieldNameProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatConditionBase.FieldName">FormatConditionBase.FieldName</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatConditionBase.IsEnabled">
      <summary>
        <para>Specifies whether the conditional format is enabled. This is a dependency property.</para>
      </summary>
      <value>true, if the format condition is enabled; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatConditionBase.IsEnabledProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatConditionBase.IsEnabled">FormatConditionBase.IsEnabled</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatConditionBase.PredefinedFormatName">
      <summary>
        <para>Specifies the name of the predefined format to be applied to the cells. This is a dependency property.</para>
      </summary>
      <value>The predefined format name.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.FormatConditionBase.PredefinedFormatNameProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.FormatConditionBase.PredefinedFormatName">FormatConditionBase.PredefinedFormatName</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.FormatConditionCollection">
      <summary>
        <para>Stores conditional formats applied to the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.FormatConditionCollection.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.FormatConditionCollection"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.FormatConditionCollection.Item(System.String)">
      <summary>
        <para>Gets a list of conditional formats applied to the specified column.</para>
      </summary>
      <param name="fieldName">The column’s field name.</param>
      <value>A list of conditional formats applied to the column.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GetSummariesAsyncEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.GetTotalSummaries"/> event.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GetSummariesEventArgsBase">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.GetTotalSummaries"/> event.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GetSummariesEventArgsBase.Filter">
      <summary>
        <para>Gets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s filter.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s filter.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GetSummariesEventArgsBase.Summaries">
      <summary>
        <para>Gets the GridControl’s <see href="https://docs.devexpress.com/WinUI/102152/controls/data-grid/data-summaries">total summaries</see>.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s total summaries.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GetUniqueValuesAsyncEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.GetUniqueValues"/> event.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GetUniqueValuesEventArgsBase">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.GetUniqueValues"/> event.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GetUniqueValuesEventArgsBase.Filter">
      <summary>
        <para>Gets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s filter.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s filter.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GetUniqueValuesEventArgsBase.PropertyName">
      <summary>
        <para>Gets the field name.</para>
      </summary>
      <value>The field name.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridCell">
      <summary>
        <para>Represents an object which corresponds to a data cell.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridCell.#ctor(System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridCell"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridCell.Column">
      <summary>
        <para>Gets the column which contains the cell.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridCell.RowHandle">
      <summary>
        <para>Gets the handle of the row which owns the cell.</para>
      </summary>
      <value>An integer value that specifies the handle of the row which owns the cell.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridCellValidationEventArgs">
      <summary>
        <para>Populates the <see cref="E:DevExpress.WinUI.Grid.ColumnBase.Validate">ColumnBase.Validate</see> and <see cref="E:DevExpress.WinUI.Grid.GridControl.ValidateCell">GridControl.ValidateCell</see> events with data.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridCellValidationEventArgs.#ctor(System.Object,System.Int32,DevExpress.WinUI.Grid.ColumnBase,System.Object,System.Object)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridCellValidationEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridCellValidationEventArgs.CellValue">
      <summary>
        <para>Gets the cell’s old valid value.</para>
      </summary>
      <value>The cell’s old valid value.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridCellValidationEventArgs.Column">
      <summary>
        <para>Gets the column that contains the processed cell.</para>
      </summary>
      <value>The column that contains the processed cell.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridCheckBoxColumn">
      <summary>
        <para>Represents a column with Boolean values.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridCheckBoxColumn.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridCheckBoxColumn"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridCheckBoxColumn.ClickMode">
      <summary>
        <para>Gets or sets a value that specifies when the editor’s state changes in response to end-user manipulations. This is a dependency property.</para>
      </summary>
      <value>A Microsoft.UI.Xaml.Controls.ClickMode enumeration value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridCheckBoxColumn.ClickModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridCheckBoxColumn.ClickMode">GridCheckBoxColumn.ClickMode</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridCheckBoxColumn.IsThreeState">
      <summary>
        <para>Gets or sets whether the check editor supports three states (checked, unchecked and indeterminate).</para>
      </summary>
      <value>true if the editor supports three states; false if the editor supports two states (checked and unchecked).</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridCheckBoxColumn.IsThreeStateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridCheckBoxColumn.IsThreeState">GridCheckBoxColumn.IsThreeState</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridColumnCollection">
      <summary>
        <para>Represents the grid’s column collection.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnCollection.#ctor(DevExpress.WinUI.Grid.DataControlBase)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridColumnCollection"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridColumnCommands">
      <summary>
        <para>Stores the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> column’s commands.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnCommands.#ctor(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridColumnCommands"/> class.</para>
      </summary>
      <param name="column">A <see cref="T:DevExpress.WinUI.Grid.ColumnBase"/> descendant that represents the column.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnCommands.ChangeColumnSortOrder">
      <summary>
        <para>Toggles a column’s sort order.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnCommands.ClearColumnFilter">
      <summary>
        <para>Clears the column’s filter.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnCommands.ClearGroupSummarySorting">
      <summary>
        <para>Clears <see href="https://docs.devexpress.com/WinUI/403859/controls/data-grid/sort-data/sort-by-summary">sort by summary</see> operations applied to the column.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnCommands.SetColumnSortOrder">
      <summary>
        <para>Specifies the column’s sort order.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnCommands.ToggleIsGrouped">
      <summary>
        <para>Groups/ungroups <see cref="T:DevExpress.WinUI.Grid.GridControl"/> data by the column values.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridColumnContextMenuInfo">
      <summary>
        <para>Contains information about the column header’s context menu.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnContextMenuInfo.#ctor(DevExpress.WinUI.Grid.ColumnBase,System.Object,DevExpress.WinUI.Grid.Internal.GridHitTestInfo,System.Object,DevExpress.WinUI.Grid.GridControl)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridColumnContextMenuInfo"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnContextMenuInfo.Column">
      <summary>
        <para>Gets a column for which the context menu is invoked.</para>
      </summary>
      <value>A column for which the context menu is invoked.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnContextMenuInfo.MenuType">
      <summary>
        <para>Gets the context menu’s type.</para>
      </summary>
      <value>The context menu’s type.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridColumnDataEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.CustomUnboundColumnData">GridControl.CustomUnboundColumnData</see> event.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnDataEventArgs.Column">
      <summary>
        <para>Gets the unbound column currently being processed.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnDataEventArgs.GetListSourceFieldValue(System.Int32,System.String)">
      <summary>
        <para>Returns the value of the specified cell within the specified item in the grid item source.</para>
      </summary>
      <param name="listSourceRowIndex">A zero-based integer value that identifies the record in an item source by its index.</param>
      <param name="fieldName">A string value that specifies the name of the item source field.</param>
      <returns>An object that represents a value from the grid item source.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnDataEventArgs.GetListSourceFieldValue(System.String)">
      <summary>
        <para>Returns the value of the specified cell within the processed item in the grid item source.</para>
      </summary>
      <param name="fieldName">A string value that specifies the name of the item source field.</param>
      <returns>An object that represents a value from the grid item source.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnDataEventArgs.ListSourceRowIndex">
      <summary>
        <para>Gets the index of the record in the data source to which the processed item corresponds.</para>
      </summary>
      <value>A zero-based integer value that specifies the index of the record in a data source to which the processed item corresponds.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnDataEventArgs.Row">
      <summary>
        <para>Get a data row which contains the cell currently being processed.</para>
      </summary>
      <value>An object that represents the data row containing the processed cell.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnDataEventArgs.Source">
      <summary>
        <para>Gets the grid control that raised the event.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.GridControl"/> object that raised the event.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridColumnDataEventHandler">
      <summary>
        <para>Represents a method that will handle the <see cref="E:DevExpress.WinUI.Grid.GridControl.CustomUnboundColumnData">GridControl.CustomUnboundColumnData</see> event.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridColumnUnitType">
      <summary>
        <para>Lists the values that specify how to calculate a column’s width.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridColumnUnitType.Auto">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> sizes the column based on the cell content.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridColumnUnitType.Pixel">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> sizes the column based on an absolute value in pixels.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridColumnUnitType.Star">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> sizes the column based on a weighted proportion of available space.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridColumnWidth">
      <summary>
        <para>A column’s width in the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.#ctor(System.Double,DevExpress.WinUI.Grid.GridColumnUnitType)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.#ctor(System.Double)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.Equals(DevExpress.WinUI.Grid.GridColumnWidth)">
      <summary>
        <para>Determines whether the specified <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance is equal to this <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance.</para>
      </summary>
      <param name="other">A <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance compared with this <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance.</param>
      <returns>true if the specified <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance is equal to this <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance; otherwise false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.Equals(System.Object)">
      <summary>
        <para>Determines whether the specified object is equal to the <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance.</para>
      </summary>
      <param name="obj">An object compared with the <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance.</param>
      <returns>true if the specified object is equal to the <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> instance; otherwise false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.GetHashCode">
      <summary>
        <para>Gets a hash code (a number) that defines the current <see cref="T:DevExpress.WinUI.Grid.GridColumnWidth"/> object.</para>
      </summary>
      <returns>A hash code for the current object.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnWidth.IsAbsolute">
      <summary>
        <para>Gets a value that indicates whether this instance sizes elements based on a fixed pixel value.</para>
      </summary>
      <value>true if the <see cref="P:DevExpress.WinUI.Grid.GridColumnWidth.UnitType">GridColumnWidth.UnitType</see> property is set to Pixel; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnWidth.IsAuto">
      <summary>
        <para>Gets a value that indicates whether this instance automatically sizes elements based on content.</para>
      </summary>
      <value>true if the <see cref="P:DevExpress.WinUI.Grid.GridColumnWidth.UnitType">GridColumnWidth.UnitType</see> property is set to Auto; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnWidth.IsStar">
      <summary>
        <para>Gets a value that indicates whether this instance automatically sizes elements based on a weighted proportion of available space.</para>
      </summary>
      <value>true if the <see cref="P:DevExpress.WinUI.Grid.GridColumnWidth.UnitType">GridColumnWidth.UnitType</see> property is set to Star; otherwise, false.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.op_Equality(DevExpress.WinUI.Grid.GridColumnWidth,DevExpress.WinUI.Grid.GridColumnWidth)">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.op_Implicit(System.Double)~DevExpress.WinUI.Grid.GridColumnWidth">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.op_Implicit(System.String)~DevExpress.WinUI.Grid.GridColumnWidth">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.op_Inequality(DevExpress.WinUI.Grid.GridColumnWidth,DevExpress.WinUI.Grid.GridColumnWidth)">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridColumnWidth.ToString">
      <summary>
        <para>Returns a string that identifies the current object.</para>
      </summary>
      <returns>A string that identifies the current object.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnWidth.UnitType">
      <summary>
        <para>Gets a value that specifies how the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> calculates a column’s width.</para>
      </summary>
      <value>A value that specifies how the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> calculates a column’s width.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridColumnWidth.Value">
      <summary>
        <para>Gets the absolute value of the column width.</para>
      </summary>
      <value>The absolute value of the grid column width in pixels or in stars.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridComboBoxColumn">
      <summary>
        <para>Represents a column that represents lists.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridComboBoxColumn.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridComboBoxColumn"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridComboBoxColumn.DisplayMemberPath">
      <summary>
        <para>Gets or sets the name or path of the property that is displayed for each data item. This is a dependency property.</para>
      </summary>
      <value>A string value that specifies the name or path of the property that is displayed for each data item.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridComboBoxColumn.DisplayMemberPathProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridComboBoxColumn.DisplayMemberPath">GridComboBoxColumn.DisplayMemberPath</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridComboBoxColumn.DisplayTemplate">
      <summary>
        <para>Gets or sets a template that defines the combobox presentation. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:Microsoft.UI.Xaml.DataTemplate"/> object that represents the template that defines the combobox presentation.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridComboBoxColumn.DisplayTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridComboBoxColumn.DisplayTemplate">GridComboBoxColumn.DisplayTemplate</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemContainerStyle">
      <summary>
        <para>Gets or sets a style applied to combo box items.</para>
      </summary>
      <value>A style applied to combo box items.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemContainerStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemContainerStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemsSource">
      <summary>
        <para>Gets or sets the data source of the combobox. This is a dependency property.</para>
      </summary>
      <value>An object that is the data source from which the data is retrieved.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemsSourceProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemsSource">GridComboBoxColumn.ItemsSource</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemTemplate">
      <summary>
        <para>Gets or sets a template that defines the presentation of items contained within a combobox. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:Microsoft.UI.Xaml.DataTemplate"/> object that represents the template which defines the presentation of items contained within the list.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridComboBoxColumn.ItemTemplate">GridComboBoxColumn.ItemTemplate</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridComboBoxColumn.SelectedValuePath">
      <summary>
        <para>Gets or sets the property path used to get the value of the selected item. This is a dependency property.</para>
      </summary>
      <value>A string value that specifies the property path used to get the value of the selected item.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridComboBoxColumn.SelectedValuePathProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridComboBoxColumn.SelectedValuePath">GridComboBoxColumn.SelectedValuePath</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridCommonContextMenuInfo">
      <summary>
        <para>Contains information about the context menu invoked for the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s empty space.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridCommonContextMenuInfo.#ctor(System.Object,DevExpress.WinUI.Grid.Internal.GridHitTestInfo,System.Object,DevExpress.WinUI.Grid.GridControl)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridCommonContextMenuInfo"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridCommonContextMenuInfo.MenuType">
      <summary>
        <para>Gets the context menu’s type.</para>
      </summary>
      <value>The context menu’s type.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridContextMenuInfoBase">
      <summary>
        <para>The base class for context menu info classes used in GridControl context menus.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridContextMenuInfoBase.#ctor(System.Object,DevExpress.WinUI.Grid.Internal.GridHitTestInfo,System.Object,DevExpress.WinUI.Grid.GridControl)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridContextMenuInfoBase"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridContextMenuInfoBase.Commands">
      <summary>
        <para>Contains <see cref="T:DevExpress.WinUI.Grid.GridControl"/> commands.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.GridControlCommands"/> object that contains grid commands.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridContextMenuInfoBase.Grid">
      <summary>
        <para>Gets the target GridControl instance for the context menu.</para>
      </summary>
      <value>A GridControl instance.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridContextMenuInfoBase.MenuType">
      <summary>
        <para>Gets the context menu’s type.</para>
      </summary>
      <value>The context menu type.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridContextMenuType">
      <summary>
        <para>Lists values that specify the context menu type.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridContextMenuType.Column">
      <summary>
        <para>A <see href="https://docs.devexpress.com/WinUI/102033/controls/data-grid/visual-elements/column-header-panel">column header</see>‘s context menu.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridContextMenuType.Common">
      <summary>
        <para>An empty space’s context menu.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridContextMenuType.GroupPanel">
      <summary>
        <para>The <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">group panel</see>‘s context menu.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridContextMenuType.RowCell">
      <summary>
        <para>The row cell’s context menu.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridControl">
      <summary>
        <para>The <see href="https://docs.devexpress.com/WinUI/102040/controls/data-grid">Data Grid</see> control.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> class with default settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.ActualGroupCount">
      <summary>
        <para>Gets the actual number of grouping columns.</para>
      </summary>
      <value>An integer value that specifies the number of grouping columns.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.ActualGroupCountProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.ActualGroupCount">GridControl.ActualGroupCount</see> dependency property.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.AddingNewRow">
      <summary>
        <para>Fires before a new row is added to the data source via the Grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.AddNewRow">
      <summary>
        <para>Adds a new record.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.AutoExpandAllGroups">
      <summary>
        <para>Gets or sets whether all group rows are automatically expanded after each grouping operation. This is a dependency property.</para>
      </summary>
      <value>true to expand all group rows after each grouping operation; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.AutoExpandAllGroupsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.AutoExpandAllGroups">GridControl.AutoExpandAllGroups</see> dependency property.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CellValueChanged">
      <summary>
        <para>Occurs when a cell value is changed.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CellValueChanging">
      <summary>
        <para>Occurs when a user edits a cell value (for example, types or deletes a character, or chooses a value from the drop-down list).</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.ClearGrouping">
      <summary>
        <para>Ungroups the grid.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.ClearGroupSummarySorting">
      <summary>
        <para>Clears <see href="https://docs.devexpress.com/WinUI/403859/controls/data-grid/sort-data/sort-by-summary">sort by summary</see> operations applied to the grid.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.ClipboardRowCopying">
      <summary>
        <para>Occurs before the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> copies data to the clipboard and allows you to process the copy operation.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.ClipboardRowPasting">
      <summary>
        <para>Occurs before clipboard data is pasted in the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> and allows you to process the paste operation.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.CollapseAllGroups">
      <summary>
        <para>Collapses all group rows.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.CollapseGroupRow(System.Int32,System.Boolean)">
      <summary>
        <para>Collapses the specified group row and optionally any child group rows at all nesting levels.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the group row’s handle. Group row handles are negative (starting from &#0045;1).</param>
      <param name="recursive">true to collapse any child group rows at all nesting levels; otherwise, false.</param>
      <returns>true if the specified group row has been collapsed; otherwise, false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.CollapseGroupRow(System.Int32)">
      <summary>
        <para>Collapses the specified group row.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the group row’s handle. Group row handles are negative (starting from &#0045;1).</param>
      <returns>true if the specified group row has been collapsed; otherwise, false.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.ColumnMenu">
      <summary>
        <para>Gets or sets a <see href="https://docs.devexpress.com/WinUI/102355/controls/data-grid/visual-elements/context-menus">context menu</see> that is invoked when a user right-clicks a column header.</para>
      </summary>
      <value>A UI element invoked when a user right-clicks a column header.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.ColumnMenuProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.ColumnMenu">GridControl.ColumnMenu</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.Commands">
      <summary>
        <para>Contains grid commands.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.GridControlCommands"/> object that contains grid commands.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.ContextMenuClosed">
      <summary>
        <para>Occurs after a user closes a context menu.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.ContextMenuOpened">
      <summary>
        <para>Occurs after a user opens a context menu.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.ContextMenuOpening">
      <summary>
        <para>Occurs before a user opens a <see href="https://docs.devexpress.com/WinUI/102355/controls/data-grid/visual-elements/context-menus">context menu</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.CopyToClipboard">
      <summary>
        <para>Copies selected rows/cells to the clipboard.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CustomColumnDisplayText">
      <summary>
        <para>Allows you to customize a data cell’s display text.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CustomColumnGroup">
      <summary>
        <para>Provides the capability to group data using custom rules.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CustomColumnSort">
      <summary>
        <para>Enables you to sort data using custom rules.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CustomGroupDisplayText">
      <summary>
        <para>Allows you to display custom text in group rows.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CustomRowFilter">
      <summary>
        <para>Allows you to use custom rules to filter data rows.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CustomSummary">
      <summary>
        <para>Allows you to calculate summary values manually.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CustomSummaryExists">
      <summary>
        <para>Enables you to specify which summaries should be calculated and displayed.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.CustomUnboundColumnData">
      <summary>
        <para>Enables data to be supplied to unbound columns.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.DeleteRow(System.Int32)">
      <summary>
        <para>Deletes the specified data row.</para>
      </summary>
      <param name="rowHandle">The row handle.</param>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.EndGrouping">
      <summary>
        <para>Occurs after the grouping operation has been completed.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.EndSorting">
      <summary>
        <para>Occurs after a sorting operation has been completed.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.ExpandAllGroups">
      <summary>
        <para>Expands all group rows.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.ExpandGroupRow(System.Int32,System.Boolean)">
      <summary>
        <para>Expands the specified group row and optionally any child group rows at all nesting levels.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the group row’s handle. Group row handles are negative (starting from &#0045;1).</param>
      <param name="recursive">true, to expand any child group rows at all nesting levels; otherwise, false.</param>
      <returns>true, if the specified group row has been expanded; otherwise, false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.ExpandGroupRow(System.Int32)">
      <summary>
        <para>Expands the specified group row.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the group row’s handle. Group row handles are negative (starting from &#0045;1).</param>
      <returns>true if the specified group row has been expanded; otherwise, false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.FindRow(System.Object)">
      <summary>
        <para>Searches for the data row in the GridControl and returns the row’s handle.</para>
      </summary>
      <param name="value">The searched row.</param>
      <returns>The row’s handle.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetCellValue(System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Returns the value of the specified data cell.</para>
      </summary>
      <param name="rowHandle">The handle of the row that contains the cell.</param>
      <param name="column">The column that contains the cell.</param>
      <returns>The specified cell’s value.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetCellValue(System.Int32,System.String)">
      <summary>
        <para>Returns the value of the specified data cell.</para>
      </summary>
      <param name="rowHandle">The handle of the row that contains the cell.</param>
      <param name="fieldName">The column’s field name.</param>
      <returns>The specified cell’s value.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetCellValueByListIndex(System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Returns the specified cell’s value.</para>
      </summary>
      <param name="listSourceRowIndex">A record’s data source index.</param>
      <param name="column">A column that contains the data cell.</param>
      <returns>The specified cell’s value.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetCellValueByListIndex(System.Int32,System.String)">
      <summary>
        <para>Returns the specified cell’s value.</para>
      </summary>
      <param name="listSourceRowIndex">A record’s data source index.</param>
      <param name="fieldName">A column’s field name.</param>
      <returns>The specified cell’s value.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetChildRowCount(System.Int32)">
      <summary>
        <para>Returns the number of child rows (group or data) contained within the specified group row.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the group row’s handle.</param>
      <returns>An integer value that specifies the number of child rows contained within the specified group row.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetChildRowHandle(System.Int32,System.Int32)">
      <summary>
        <para>Returns the handle of the row contained within the specified group row, at the specified position.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the group row’s handle.</param>
      <param name="childIndex">A zero-based integer that specifies the child row’s position within the specified group row.</param>
      <returns>An integer value that represents the handle of the row contained within the specified group row, at the specified position.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetDataRowHandleByGroupRowHandle(System.Int32)">
      <summary>
        <para>Returns the handle of the first data row in the specified group row.</para>
      </summary>
      <param name="groupRowHandle">The group row’s handle.</param>
      <returns>The handle of the first data row in the specified group row.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetGroupRowValue(System.Int32,DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Returns the value of the group row that corresponds to the specified column.</para>
      </summary>
      <param name="rowHandle">The group row’s handle.</param>
      <param name="column">A group column.</param>
      <returns>The specified group row’s value.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetGroupRowValue(System.Int32)">
      <summary>
        <para>Returns the value of the specified group row.</para>
      </summary>
      <param name="rowHandle">The group row’s handle.</param>
      <returns>The specified group row’s value.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetGroupSummaryValue(System.Int32,DevExpress.WinUI.Grid.SummaryItemBase)">
      <summary>
        <para>Returns the value of the group summary displayed in the specified <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>.</para>
      </summary>
      <param name="rowHandle">The group row’s handle.</param>
      <param name="item">The group summary item.</param>
      <returns>The group summary item’s value.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetListIndexByRowHandle(System.Int32)">
      <summary>
        <para>Returns the specified data row’s index in a data source.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the data row’s handle.</param>
      <returns>An integer value that specifies the index of the corresponding record in a data source.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetParentRowHandle(System.Int32)">
      <summary>
        <para>Determines a particular row’s parent group row.</para>
      </summary>
      <param name="rowHandle">The handle of the row whose parent row’s handle is to be obtained.</param>
      <returns>The handle of the parent group row for the specified child row.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetRow(System.Int32)">
      <summary>
        <para>Returns an object in a data source that corresponds to the specified row.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the row’s handle.</param>
      <returns>A data object that corresponds to the specified row.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetRowByListIndex(System.Int32)">
      <summary>
        <para>Returns an object that represents the specified row.</para>
      </summary>
      <param name="listSourceRowIndex">A zero-based integer value that specifies the index of the corresponding record in a data source.</param>
      <returns>An object that represents the specified row. null (Nothing in Visual Basic), if the specified row was not found.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetRowHandleByListIndex(System.Int32)">
      <summary>
        <para>Returns the data row’s handle by its index in a data source.</para>
      </summary>
      <param name="listIndex">An integer value that specifies the index of the corresponding record in a data source.</param>
      <returns>An integer value that specifies the data row’s handle.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetRowHandleByVisibleIndex(System.Int32)">
      <summary>
        <para>Returns a row’s handle by its visible index.</para>
      </summary>
      <param name="visibleIndex">The row’s visible index.</param>
      <returns>The specified row’s handle.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetRowLevelByRowHandle(System.Int32)">
      <summary>
        <para>Returns the specified row’s group level.</para>
      </summary>
      <param name="rowHandle">The row’s handle.</param>
      <returns>The row’s group level.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetRowLevelByVisibleIndex(System.Int32)">
      <summary>
        <para>Returns the specified row’s group level.</para>
      </summary>
      <param name="visibleIndex">The row’s visible index.</param>
      <returns>The row’s group level.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetRowVisibleIndexByHandle(System.Int32)">
      <summary>
        <para>Returns the row’s position in the GridControl by its handle.</para>
      </summary>
      <param name="rowHandle">The row’s handle.</param>
      <returns>The row’s visible index.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetSelectedCells">
      <summary>
        <para>Returns a list of selected data cells.</para>
      </summary>
      <returns>A list of selected data cells.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GetTotalSummaryValue(DevExpress.WinUI.Grid.SummaryItemBase)">
      <summary>
        <para>Returns the value of the specified total summary item.</para>
      </summary>
      <param name="item">The total summary item.</param>
      <returns>The value of the specified total summary item.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GridMenu">
      <summary>
        <para>Gets or sets a <see href="https://docs.devexpress.com/WinUI/102355/controls/data-grid/visual-elements/context-menus">context menu</see> that is invoked when a user right-clicks an empty space within the <see cref="T:DevExpress.Xpf.Grid.GridControl"/>.</para>
      </summary>
      <value>A UI element invoked when a user right-clicks an empty space within the <see cref="T:DevExpress.Xpf.Grid.GridControl"/>.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GridMenuProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GridMenu">GridControl.GridMenu</see> dependency property.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GroupBy(DevExpress.WinUI.Grid.ColumnBase,DevExpress.Data.ColumnSortOrder,System.Int32)">
      <summary>
        <para>Groups data by the values of the specified column and specifies its sort order and group index.</para>
      </summary>
      <param name="column">The grid column.</param>
      <param name="sortedOrder">The column’s sort order.</param>
      <param name="groupedIndex">The group level. If negative, an exception is raised.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GroupBy(DevExpress.WinUI.Grid.ColumnBase,DevExpress.Data.ColumnSortOrder)">
      <summary>
        <para>Groups data by the values of the specified column with the specified sort order.</para>
      </summary>
      <param name="column">The grid column.</param>
      <param name="sortedOrder">The column’s sort order.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GroupBy(DevExpress.WinUI.Grid.ColumnBase,System.Int32)">
      <summary>
        <para>Groups data by the values of the specified column with the specified group index.</para>
      </summary>
      <param name="column">The grid column</param>
      <param name="groupedIndex">The column’s group index</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GroupBy(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Groups data by the values of the specified column.</para>
      </summary>
      <param name="column">The grid column</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.GroupBy(System.String)">
      <summary>
        <para>Groups data by the values of the specified column.</para>
      </summary>
      <param name="fieldName">The column’s field name.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupLevelIndent">
      <summary>
        <para>Gets or sets a width of the group indent.</para>
      </summary>
      <value>A width of the group indent.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupLevelIndentProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupLevelIndent"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupPanelMenu">
      <summary>
        <para>Gets or sets a <see href="https://docs.devexpress.com/WinUI/102355/controls/data-grid/visual-elements/context-menus">context menu</see> that is invoked when a user right-clicks the <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">Group Panel</see>.</para>
      </summary>
      <value>A UI element invoked when a user right-clicks the <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">Group Panel</see>.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupPanelMenuProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupPanelMenu">GridControl.GroupPanelMenu</see> dependency property.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.GroupRowCollapsed">
      <summary>
        <para>Occurs after a group row has been collapsed.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.GroupRowCollapsing">
      <summary>
        <para>Occurs when a group row is about to be collapsed, allowing cancellation of the action.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupRowExpandButtonStyleSettings">
      <summary>
        <para>Gets or sets style settings applied to the <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>‘s expand button.</para>
      </summary>
      <value>Style settings applied to the <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>‘s expand button.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupRowExpandButtonStyleSettingsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupRowExpandButtonStyleSettings"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupRowExpandButtonTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of expand buttons displayed in <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group rows</see>.</para>
      </summary>
      <value>A template that defines the appearance of expand buttons displayed in group rows. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.GroupRowData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupRowExpandButtonTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupRowExpandButtonTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.GroupRowExpanded">
      <summary>
        <para>Occurs after a group row has been expanded.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.GroupRowExpanding">
      <summary>
        <para>Occurs when a group row is about to be expanded, allowing cancellation of the action.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupRowMinHeight">
      <summary>
        <para>Gets or sets a <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>‘s minimum height.</para>
      </summary>
      <value>A group row’s minimum height.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupRowMinHeightProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupRowMinHeight"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupRowStyleSettings">
      <summary>
        <para>Gets or sets style settings applied to group rows.</para>
      </summary>
      <value>Style settings applied to group rows.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupRowStyleSettingsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupRowStyleSettings"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupSummary">
      <summary>
        <para>Provides access to <see href="https://docs.devexpress.com/WinUI/102152/controls/data-grid/data-summaries#group-summary">group summary items</see>.</para>
      </summary>
      <value>A collection of group summary items.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupSummaryDisplayMode">
      <summary>
        <para>Gets or sets the position of group summaries within a group row. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:DevExpress.WinUI.Grid.GroupSummaryDisplayMode"/> enumeration value that specifies the position of group summaries within a group row.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupSummaryDisplayModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupSummaryDisplayMode">GridControl.GroupSummaryDisplayMode</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupSummaryItemTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of group summary items. This is a dependency property.</para>
      </summary>
      <value>A template that defines the appearance of group summary items.  The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.GroupSummaryData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupSummaryItemTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupSummaryItemTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.GroupValueTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of column values in <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group rows</see>. This is a dependency property.</para>
      </summary>
      <value>A template that defines the appearance of column values in group rows. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.GroupValueData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.GroupValueTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.GroupValueTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.HiddenEditor">
      <summary>
        <para>Occurs after a cell’s editor is closed.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.InitNewRow">
      <summary>
        <para>Allows you to initialize a new row with default values.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.InvalidRowException">
      <summary>
        <para>Occurs when a row fails validation or cannot be saved to a data source.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.IsGrouped">
      <summary>
        <para>Gets whether the grid’s data is grouped.</para>
      </summary>
      <value>true if data grouping is applied; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.IsGroupedProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.IsGrouped">GridControl.IsGrouped</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.IsGroupPanelVisible">
      <summary>
        <para>Gets whether the <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">Group Panel</see> is displayed in the GridControl. This is a dependency property.</para>
      </summary>
      <value>true if the <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">Group Panel</see> is displayed in the GridControl; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.IsGroupPanelVisibleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.IsGroupPanelVisible"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.IsGroupRowExpanded(System.Int32)">
      <summary>
        <para>Indicates whether the specified group row is expanded.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the row’s handle. Group row handles are negative (starting from &#0045;1).</param>
      <returns>true if the specified row is expanded; otherwise, false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.IsGroupRowHandle(System.Int32)">
      <summary>
        <para>Indicates whether the specified handle corresponds to a <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>.</para>
      </summary>
      <param name="rowHandle">The row’s handle.</param>
      <returns>true if the specified handle corresponds to a group row; otherwise, false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.IsRowVisible(System.Int32)">
      <summary>
        <para>Indicates whether the specified row is visible.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the row’s handle.</param>
      <returns>true if the specified row is visible; otherwise, false.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.IsValidRowHandle(System.Int32)">
      <summary>
        <para>Indicates whether the specified row handle is valid.</para>
      </summary>
      <param name="rowHandle">An integer value that specifies the row’s handle.</param>
      <returns>true if the specified row handle is valid; otherwise, false.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.KeepFocusedRowOnUpdate">
      <summary>
        <para>Gets or sets whether the focused row retains focus when a user sorts or filters GridControl data. This is a dependency property.</para>
      </summary>
      <value>true if the focused row retains focus when a user sorts or filters grid data; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.KeepFocusedRowOnUpdateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.KeepFocusedRowOnUpdate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.MoveNextRow">
      <summary>
        <para>Moves focus to the row following the one currently focused.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.MovePrevRow(System.Boolean)">
      <summary>
        <para>Moves focus to the row that precedes the focused row, and specifies whether this method can focus the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see>.</para>
      </summary>
      <param name="allowNavigateToAutoFilterRow">true if this method can focus the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Automatic Filter Row</see>; otherwise, false.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.PasteFromClipboard">
      <summary>
        <para>Pastes clipboard data to the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintAllGroupsExpanded">
      <summary>
        <para>Gets or sets whether to print the grid with all <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group rows</see> expanded. This is a dependency property.</para>
      </summary>
      <value>true to expand all <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group rows</see> in a printed document; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintAllGroupsExpandedProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintAllGroupsExpanded"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintAutoWidth">
      <summary>
        <para>Gets or sets whether columns should fit to the report page in a printed document. This is a dependency property.</para>
      </summary>
      <value>true to fit print columns to the report page; false to print columns with their specified width.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintAutoWidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintAutoWidth"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintColumnHeaders">
      <summary>
        <para>Gets or sets whether to print <see href="https://docs.devexpress.com/WinUI/102033/controls/data-grid/visual-elements/column-header-panel">column headers</see>. This is a dependency property.</para>
      </summary>
      <value>true to print <see href="https://docs.devexpress.com/WinUI/102033/controls/data-grid/visual-elements/column-header-panel">column headers</see>; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintColumnHeadersProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintColumnHeaders"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintColumnHeaderStyle">
      <summary>
        <para>Gets or sets the style applied to <see href="https://docs.devexpress.com/WinUI/102033/controls/data-grid/visual-elements/column-header-panel">column header</see> items in a printed document. This is a dependency property.</para>
      </summary>
      <value>The style applied to print <see href="https://docs.devexpress.com/WinUI/102033/controls/data-grid/visual-elements/column-header-panel">column header</see> items.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintColumnHeaderStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintColumnHeaderStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintFixedTotalSummary">
      <summary>
        <para>Gets or sets whether to print the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">fixed total summary panel</see>. This is a dependency property.</para>
      </summary>
      <value>true to print the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">fixed total summary panel</see>; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintFixedTotalSummaryProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintFixedTotalSummary"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintFixedTotalSummaryStyle">
      <summary>
        <para>Gets or sets the style applied to <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">fixed total summary</see> items in a printed document. This is a dependency property.</para>
      </summary>
      <value>The style applied to printed <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">fixed total summary</see> items.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintFixedTotalSummaryStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintFixedTotalSummaryStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintGroupLevelIndent">
      <summary>
        <para>Gets or sets the indent between group rows at neighboring group levels when the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> is printed. This is a dependency property.</para>
      </summary>
      <value>The group row indent.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintGroupLevelIndentProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintGroupLevelIndent"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintGroupRowStyle">
      <summary>
        <para>Gets or sets the style applied to <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see> items (including Group Summary) in a printed document. This is a dependency property.</para>
      </summary>
      <value>The style applied to printed <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see> items.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintGroupRowStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintGroupRowStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintGroupSummary">
      <summary>
        <para>Gets or sets whether to print the <see href="https://docs.devexpress.com/WinUI/102152/controls/data-grid/data-summaries">group summary</see> panel. This is a dependency property.</para>
      </summary>
      <value>true to print the <see href="https://docs.devexpress.com/WinUI/102152/controls/data-grid/data-summaries">group summary</see> panel; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintGroupSummaryProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintGroupSummary"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintTotalSummary">
      <summary>
        <para>Gets or sets whether to print the <see href="https://docs.devexpress.com/WinUI/402938/controls/data-grid/visual-elements/summary-panel">summary panel</see>. This is a dependency property.</para>
      </summary>
      <value>true to print the <see href="https://docs.devexpress.com/WinUI/402938/controls/data-grid/visual-elements/summary-panel">summary panel</see>; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintTotalSummaryProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintTotalSummary"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.PrintTotalSummaryStyle">
      <summary>
        <para>Gets or sets the style applied to <see href="https://docs.devexpress.com/WinUI/402938/controls/data-grid/visual-elements/summary-panel">total summary</see> items when they are printed. This is a dependency property.</para>
      </summary>
      <value>The style applied to printed <see href="https://docs.devexpress.com/WinUI/402938/controls/data-grid/visual-elements/summary-panel">total summary</see> items.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.PrintTotalSummaryStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.PrintTotalSummaryStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.RefreshRow(System.Int32)">
      <summary>
        <para>Reloads the specified row from a data source.</para>
      </summary>
      <param name="rowHandle">The row’s handle.</param>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.RowCanceled">
      <summary>
        <para>Occurs when the changes made in a row are discarded.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.RowCellMenu">
      <summary>
        <para>Gets or sets a <see href="https://docs.devexpress.com/WinUI/102355/controls/data-grid/visual-elements/context-menus">context menu</see> that is invoked when a user right-clicks a data cell, a row, or <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">row indicator cells</see>.</para>
      </summary>
      <value>A UI element invoked when a user right-clicks a data cell, a row, or row indicator cells.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.RowCellMenuProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.RowCellMenu">GridControl.RowCellMenu</see> dependency property.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.RowUpdated">
      <summary>
        <para>Occurs when the GridControl updates the data source with the changes made within the focused row.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.SelectionChanged">
      <summary>
        <para>Occurs after grid’s selection is changed.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.SetCellValue(System.Int32,DevExpress.WinUI.Grid.ColumnBase,System.Object)">
      <summary>
        <para>Sets the specified cell’s value.</para>
      </summary>
      <param name="rowHandle">The handle of the row that contains the cell.</param>
      <param name="column">The column that contains the cell.</param>
      <param name="value">The cell’s new value.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.SetCellValue(System.Int32,System.String,System.Object)">
      <summary>
        <para>Sets the specified cell’s value.</para>
      </summary>
      <param name="rowHandle">The handle of the row that contains the cell.</param>
      <param name="fieldName">The column’s field name.</param>
      <param name="value">The cell’s new value.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.ShowGroupedColumns">
      <summary>
        <para>Gets or sets whether to display grouped columns in the GridControl. This is a dependency property.</para>
      </summary>
      <value>true to display grouped columns in the GridControl; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.ShowGroupedColumnsProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.ShowGroupedColumns"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.ShowGroupPanel">
      <summary>
        <para>Gets or sets whether to display the <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">Group Panel</see>. This is a dependency property.</para>
      </summary>
      <value>true to show the <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">Group Panel</see>; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.ShowGroupPanelProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.ShowGroupPanel"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.ShowGroupRowExpandButton">
      <summary>
        <para>Gets or sets whether to display expand buttons in <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group rows</see>.</para>
      </summary>
      <value>true to display expand buttons in group rows; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridControl.ShowGroupRowExpandButtonProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridControl.ShowGroupRowExpandButton"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.ShownEditor">
      <summary>
        <para>Occurs after the focused cell’s editor is shown.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.StartGrouping">
      <summary>
        <para>Occurs before a grouping operation is started.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.StartSorting">
      <summary>
        <para>Occurs before a sorting operation is started.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.TotalSummary">
      <summary>
        <para>Provides access to a collection of total summary items.</para>
      </summary>
      <value>A collection of total summary items.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.UngroupBy(DevExpress.WinUI.Grid.ColumnBase)">
      <summary>
        <para>Ungroups data by the values of the specified column.</para>
      </summary>
      <param name="column">The grid column.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.UngroupBy(System.String)">
      <summary>
        <para>Ungroups data by the values of the specified column.</para>
      </summary>
      <param name="fieldName">The column’s field name.</param>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControl.UpdateGroupSummary">
      <summary>
        <para>Recalculates <see href="https://docs.devexpress.com/WinUI/102152/controls/data-grid/data-summaries#group-summary">group summaries</see>.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.ValidateCell">
      <summary>
        <para>Enables you to specify whether the focused cell’s data is valid, and whether the cell’s editor can be closed.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridControl.ValidateRow">
      <summary>
        <para>Allows you to validate row values.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControl.VisibleRowCount">
      <summary>
        <para>Gets the total number of rows displayed in the GridControl.</para>
      </summary>
      <value>The total number of rows displayed in the GridControl.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridControlCommands">
      <summary>
        <para>Contains built-in grid commands.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridControlCommands.#ctor(DevExpress.WinUI.Grid.GridControl)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridControlCommands"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControlCommands.ChangeGroupExpanded">
      <summary>
        <para>Toggles the specified group row’s expanded state.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControlCommands.ChangeShowGroupPanel">
      <summary>
        <para>Toggles the visibility of the <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">Group Panel</see>.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControlCommands.ClearGrouping">
      <summary>
        <para>Ungroups the grid.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControlCommands.CollapseAllGroups">
      <summary>
        <para>Collapses all group rows.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControlCommands.ExpandAllGroups">
      <summary>
        <para>Expands all group rows.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridControlCommands.ShowColumnChooser">
      <summary>
        <para>Invokes the <see href="https://docs.devexpress.com/WinUI/102385/controls/data-grid/visual-elements/column-chooser">Column Chooser</see>.</para>
      </summary>
      <value>A command that implements the <see cref="T:System.Windows.Input.ICommand"/> interface.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridDateColumn">
      <summary>
        <para>Represents a column that represents Date-Time values.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridDateColumn.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridDateColumn"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridDateColumn.MaxValue">
      <summary>
        <para>Gets or sets the maximum allowed value. This is a dependency property.</para>
      </summary>
      <value>A System.DateTime value that specifies the maximum allowed date.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridDateColumn.MaxValueProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridDateColumn.MaxValue">GridDateColumn.MaxValue</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridDateColumn.MinValue">
      <summary>
        <para>Gets or sets the minimum allowed value. This is a dependency property.</para>
      </summary>
      <value>A System.DateTime value that specifies the minimum allowed date.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridDateColumn.MinValueProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridDateColumn.MinValue">GridDateColumn.MinValue</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridGroupPanelContextMenuInfo">
      <summary>
        <para>Contains information about a context menu invoked for the <see href="https://docs.devexpress.com/WinUI/102210/controls/data-grid/visual-elements/group-panel">group panel</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridGroupPanelContextMenuInfo.#ctor(System.Object,DevExpress.WinUI.Grid.Internal.GridHitTestInfo,System.Object,DevExpress.WinUI.Grid.GridControl)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridGroupPanelContextMenuInfo"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridGroupPanelContextMenuInfo.MenuType">
      <summary>
        <para>Gets the context menu’s type.</para>
      </summary>
      <value>The context menu type.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridGroupSummaryItem">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s group summary item.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridGroupSummaryItem.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridGroupSummaryItem"/> class.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridGroupSummaryItem.GetGroupColumnDisplayText(System.IFormatProvider,System.String,System.Object,System.String)">
      <summary>
        <para>Returns the text displayed in a group summary item aligned by a column.</para>
      </summary>
      <param name="language">The text’s language.</param>
      <param name="columnCaption">The column’s caption.</param>
      <param name="value">The group summary item’s value.</param>
      <param name="columnDisplayFormat">The pattern used to format column values.</param>
      <returns>The group summary item’s text.</returns>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridGroupSummaryItem.GetGroupDisplayText(System.IFormatProvider,System.String,System.Object,System.String)">
      <summary>
        <para>Returns the group summary item’s text. This text is displayed in <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group rows</see>.</para>
      </summary>
      <param name="language">The text’s language.</param>
      <param name="columnCaption">The column’s caption.</param>
      <param name="value">The group summary item’s value.</param>
      <param name="columnDisplayFormat">The pattern used to format column values.</param>
      <returns>The group summary item’s text.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortFieldName">
      <summary>
        <para>Gets or sets the name of the field by which group rows are sorted.</para>
      </summary>
      <value>The name of the field by which group rows are sorted.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortFieldNameProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortFieldName"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortIndex">
      <summary>
        <para>Gets or sets the summary’s position among sorted summaries.</para>
      </summary>
      <value>The summary’s position among sorted summaries.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortIndexProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortIndex"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortOrder">
      <summary>
        <para>Gets or sets the order in which the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> sorts group rows by their summary values.</para>
      </summary>
      <value>The order in which the GridControl sorts group rows by their summary values.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortOrderProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridGroupSummaryItem.SortOrder"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridGroupSummaryItemCollection">
      <summary>
        <para>The collection of the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s group summaries.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridGroupSummaryItemCollection.#ctor(DevExpress.WinUI.Grid.DataControlBase)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridGroupSummaryItemCollection"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridMaskColumn">
      <summary>
        <para>Represents a column that provides masking capabilities for text values.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridMaskColumn.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridMaskColumn"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridMaskColumn.Mask">
      <summary>
        <para>Gets or sets a mask expression. This is a dependency property.</para>
      </summary>
      <value>A string representing a mask expression.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskCulture">
      <summary>
        <para>Gets or sets the culture whose settings are used by masks. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.Globalization.CultureInfo"/> object whose settings are used by masks.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridMaskColumn.MaskCultureProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskCulture">GridMaskColumn.MaskCulture</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskIgnoreBlank">
      <summary>
        <para>Gets or sets whether a cell’s editor can lose focus when a value hasn’t been entered for the Simple, Regular and RegEx mask types. This is a dependency property.</para>
      </summary>
      <value>true, if a cell’s editor can lose focus when a value has not been entered; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridMaskColumn.MaskIgnoreBlankProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskIgnoreBlank">GridMaskColumn.MaskIgnoreBlank</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskPlaceHolder">
      <summary>
        <para>Gets or sets the character used as the placeholder in a masked editor for the Simple, Regular and RegEx mask types. This is a dependency property.</para>
      </summary>
      <value>The character used as the placeholder in a masked editor.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridMaskColumn.MaskPlaceHolderProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskPlaceHolder">GridMaskColumn.MaskPlaceHolder</see> dependency property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridMaskColumn.MaskProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridMaskColumn.Mask">GridMaskColumn.Mask</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskSaveLiteral">
      <summary>
        <para>Gets or sets whether constantly displayed mask characters (literals) are included in a cell’s value for the Simple and Regular mask types. This is a dependency property.</para>
      </summary>
      <value>true, if the constantly displayed mask characters are included in a cell’s value; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridMaskColumn.MaskSaveLiteralProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskSaveLiteral">GridMaskColumn.MaskSaveLiteral</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskShowPlaceHolders">
      <summary>
        <para>Gets or sets whether placeholders are displayed in a masked editor for the RegEx mask type. This is a dependency property.</para>
      </summary>
      <value>true, to display placeholders in a masked editor; otherwise false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridMaskColumn.MaskShowPlaceHoldersProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskShowPlaceHolders">GridMaskColumn.MaskShowPlaceHolders</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskType">
      <summary>
        <para>Gets or sets the mask type. This is a dependency property.</para>
      </summary>
      <value>One of the <see cref="T:DevExpress.WinUI.Editors.MaskType"/> enumeration values.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridMaskColumn.MaskTypeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskType">GridMaskColumn.MaskType</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskUseAsDisplayFormat">
      <summary>
        <para>Gets or sets whether to format a cell’s value using the mask when it is not focused. This is a dependency property.</para>
      </summary>
      <value>true if the mask settings are used to format a cell’s value when it is not focused; false to use settings specified by the <see cref="P:DevExpress.WinUI.Grid.GridTextColumn.DisplayFormat">GridTextColumn.DisplayFormat</see> property.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridMaskColumn.MaskUseAsDisplayFormatProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridMaskColumn.MaskUseAsDisplayFormat">GridMaskColumn.MaskUseAsDisplayFormat</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridPrintBrickStyle">
      <summary>
        <para>Contains appearance settings of a <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s element (brick) when it is printed.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridPrintBrickStyle.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridPrintBrickStyle"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.Background">
      <summary>
        <para>Gets or set the background color of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>The background color of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.BorderColor">
      <summary>
        <para>Gets or set the border color of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>The border color of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.BorderThickness">
      <summary>
        <para>Gets or set the border thickness of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>The border thickness of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.FontFamily">
      <summary>
        <para>Gets or set the font family of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>The font family of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.FontSize">
      <summary>
        <para>Gets or set the font size of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>The font size of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.FontStyle">
      <summary>
        <para>Gets or set the font style of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>The font style of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.FontWeight">
      <summary>
        <para>Gets or set the font weight of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>The font weight of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.Foreground">
      <summary>
        <para>Gets or set the foreground color of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>The foreground color of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridPrintBrickStyle.Padding">
      <summary>
        <para>Gets or set paddings of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</para>
      </summary>
      <value>Paddings of the <see cref="T:DevExpress.WinUI.Grid.GridControl">GridControl</see>‘s brick (element) when it is printed.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridRowCellContextMenuInfo">
      <summary>
        <para>Contains information about a context menu invoked for a row cell.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridRowCellContextMenuInfo.#ctor(System.Object,DevExpress.WinUI.Grid.Internal.GridHitTestInfo,System.Object,DevExpress.WinUI.Grid.GridControl)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridRowCellContextMenuInfo"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridRowCellContextMenuInfo.Cell">
      <summary>
        <para>Gets a cell for which the context menu is invoked.</para>
      </summary>
      <value>A cell for which the context menu is invoked.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridRowCellContextMenuInfo.MenuType">
      <summary>
        <para>Gets the context menu’s type.</para>
      </summary>
      <value>The context menu type.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridRowValidationEventArgs">
      <summary>
        <para>Populates the <see cref="E:DevExpress.WinUI.Grid.GridControl.ValidateRow">GridControl.ValidateRow</see> event with data.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridRowValidationEventArgs.#ctor(System.Object,System.Int32)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridRowValidationEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridRowValidationEventArgs.Row">
      <summary>
        <para>Gets the processed row.</para>
      </summary>
      <value>The processed row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridRowValidationEventArgs.RowHandle">
      <summary>
        <para>Gets the processed row’s handle.</para>
      </summary>
      <value>The processed row’s handle.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridSelectionChangedEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.SelectionChanged"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridSelectionChangedEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.ComponentModel.CollectionChangeAction,System.Int32)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridSelectionChangedEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridSelectionChangedEventArgs.Action">
      <summary>
        <para>Gets an action that specifies how the grid’s selection is changed.</para>
      </summary>
      <value>An action that specifies how the grid’s selection is changed.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridSelectionChangedEventArgs.ControllerRow">
      <summary>
        <para>Gets a handle of the row that is added or removed from the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s selection.</para>
      </summary>
      <value>A handle of the row that is added or removed from the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s selection.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridSelectionChangedEventArgs.Source">
      <summary>
        <para>Gets the control that raised the event.</para>
      </summary>
      <value>The control that raised the event.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridSpinEditColumn">
      <summary>
        <para>Represents a column with numeric values.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridSpinEditColumn.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridSpinEditColumn"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridSpinEditColumn.Increment">
      <summary>
        <para>Gets or sets a value by which a cell’s value changes each time the cell’s editor is spun. This is a dependency property.</para>
      </summary>
      <value>A System.Double value representing the increment for the spin editor.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridSpinEditColumn.IncrementProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridSpinEditColumn.Increment">GridSpinEditColumn.Increment</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridSpinEditColumn.MaxValue">
      <summary>
        <para>Gets or sets the maximum allowed value. This is a dependency property.</para>
      </summary>
      <value>A System.Double value that specifies the maximum allowed value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridSpinEditColumn.MaxValueProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridSpinEditColumn.MaxValue">GridSpinEditColumn.MaxValue</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridSpinEditColumn.MinValue">
      <summary>
        <para>Gets or sets the minimum allowed value. This is a dependency property.</para>
      </summary>
      <value>A System.Double value that specifies the minimum allowed value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridSpinEditColumn.MinValueProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridSpinEditColumn.MinValue">GridSpinEditColumn.MinValue</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridTemplateColumn">
      <summary>
        <para>Represents a column allowing you to implement custom data presentation.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridTemplateColumn.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridTemplateColumn"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTemplateColumn.CellTemplate">
      <summary>
        <para>Gets or sets a template that defines the appearance of column cells. This is a dependency property.</para>
      </summary>
      <value>A template that defines the appearance of column cells. The template’s data context is a <see cref="T:DevExpress.WinUI.Grid.CellData"/> object.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTemplateColumn.CellTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTemplateColumn.CellTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTemplateColumn.CellTemplateSelector">
      <summary>
        <para>Gets or sets an object that chooses a cell template based on custom logic. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:Microsoft.UI.Xaml.Controls.DataTemplateSelector"/> descendant that chooses a template based on custom logic.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTemplateColumn.CellTemplateSelectorProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTemplateColumn.CellTemplateSelector"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridTextColumn">
      <summary>
        <para>Represents a column with text values.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridTextColumn.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridTextColumn"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTextColumn.AcceptsReturn">
      <summary>
        <para>Gets or sets whether an end-user can insert return characters. This is a dependency property.</para>
      </summary>
      <value>true, to allow return characters to be accepted and processed by a cell editor; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTextColumn.AcceptsReturnProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTextColumn.AcceptsReturn">GridTextColumn.AcceptsReturn</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTextColumn.DisplayFormat">
      <summary>
        <para>Gets or sets the pattern used to format cell values for display purposes. This is a dependency property.</para>
      </summary>
      <value>A string value that specifies the format applied to column values.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTextColumn.DisplayFormatProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTextColumn.DisplayFormat">GridTextColumn.DisplayFormat</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridTextColumnBase">
      <summary>
        <para>Serves as a base for classes that represent grid columns.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTextColumnBase.AllowNullInput">
      <summary>
        <para>Gets or sets whether users can set the editor’s value to null. This is a dependency property.</para>
      </summary>
      <value>true to allow null input; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTextColumnBase.AllowNullInputProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTextColumnBase.AllowNullInput"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTextColumnBase.NullText">
      <summary>
        <para>Gets or sets the text displayed in the cell when the cell’s value is null. This is a dependency property.</para>
      </summary>
      <value>The string displayed in the cell when the cell’s value is null.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTextColumnBase.NullTextForeground">
      <summary>
        <para>Gets or sets a brush that paints a null text’s foreground. This is a dependency property.</para>
      </summary>
      <value>A brush that paints a null text’s foreground.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTextColumnBase.NullTextForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTextColumnBase.NullTextForeground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTextColumnBase.NullTextProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTextColumnBase.NullText"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTextColumnBase.NullValue">
      <summary>
        <para>Gets or sets a null value for the cell. This is a dependency property.</para>
      </summary>
      <value>The cell’s null value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTextColumnBase.NullValueProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTextColumnBase.NullValue"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTextColumnBase.TextTrimming">
      <summary>
        <para>Gets or sets the text trimming behavior. This is a dependency property.</para>
      </summary>
      <value>One of the <see cref="T:Microsoft.UI.Xaml.TextTrimming"/> enumeration values.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTextColumnBase.TextTrimmingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTextColumnBase.TextTrimming">GridTextColumnBase.TextTrimming</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTextColumnBase.TextWrapping">
      <summary>
        <para>Gets or sets whether the text wraps when it reaches the edge of the cell. This is a dependency property.</para>
      </summary>
      <value>One of the <see cref="T:Microsoft.UI.Xaml.TextWrapping"/> enumeration values.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTextColumnBase.TextWrappingProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTextColumnBase.TextWrapping">GridTextColumnBase.TextWrapping</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridTotalSummaryData">
      <summary>
        <para>Contains information about total summaries in the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridTotalSummaryData.#ctor(DevExpress.WinUI.Grid.GridTotalSummaryItem,System.Object,DevExpress.WinUI.Grid.ColumnBase,DevExpress.WinUI.Grid.DataControlBase)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridTotalSummaryData"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryData.Caption">
      <summary>
        <para>Gets the summary caption.</para>
      </summary>
      <value>The summary caption.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryData.Column">
      <summary>
        <para>Gets a column against which the grid calculates the total summary.</para>
      </summary>
      <value>A column against which the grid calculates the total summary.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryData.DataControl">
      <summary>
        <para>Gets the control that contains this total summary.</para>
      </summary>
      <value>The control that contains this total summary.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryData.DisplayValue">
      <summary>
        <para>Gets the value displayed in the summary item.</para>
      </summary>
      <value>The value displayed in the summary item.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryData.FixedTotalSummaryItemTemplate">
      <summary>
        <para>Gets a template that defines the appearance of summary items in the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see>.</para>
      </summary>
      <value>A template that defines the appearance of summary items in the Fixed Summary Panel.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryData.Item">
      <summary>
        <para>Gets the total summary item.</para>
      </summary>
      <value>The total summary item.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.GridTotalSummaryData.PropertyChanged">
      <summary>
        <para>Occurs every time any of the <see cref="T:DevExpress.WinUI.Grid.GridTotalSummaryData"/> class properties’ values change.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryData.Value">
      <summary>
        <para>Gets the total summary’s value.</para>
      </summary>
      <value>The total summary’s value.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridTotalSummaryItem">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s total summary item.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridTotalSummaryItem.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridTotalSummaryItem"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryItem.Alignment">
      <summary>
        <para>Gets or sets the summary item’s horizontal alignment within the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see>. This is a dependency property.</para>
      </summary>
      <value>The summary item’s horizontal alignment within the fixed summary panel.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTotalSummaryItem.AlignmentProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTotalSummaryItem.Alignment"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryItem.Caption">
      <summary>
        <para>Gets or sets the caption of the summary item.</para>
      </summary>
      <value>The caption of the summary item.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTotalSummaryItem.CaptionProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTotalSummaryItem.Caption"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryItem.FixedTotalSummaryItemTemplate">
      <summary>
        <para>Gets or sets the template that defines the appearance of total summary items in the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see>. This is a dependency property.</para>
      </summary>
      <value>The template that defines the appearance of total summary items in the fixed summary panel.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTotalSummaryItem.FixedTotalSummaryItemTemplateProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTotalSummaryItem.FixedTotalSummaryItemTemplate"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridTotalSummaryItem.GetFooterDisplayText(System.IFormatProvider,System.String,System.Object,System.String)">
      <summary>
        <para>Returns the total summary item’s text in the summary panel.</para>
      </summary>
      <param name="language">The text’s language.</param>
      <param name="columnCaption">The column’s caption.</param>
      <param name="value">The total summary item’s value.</param>
      <param name="columnDisplayFormat">The pattern used to format column values.</param>
      <returns>The total summary item’s text in the summary panel.</returns>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GridTotalSummaryItem.IsLast">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GridTotalSummaryItem.IsLastProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GridTotalSummaryItem.IsLast"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GridTotalSummaryItemCollection">
      <summary>
        <para>The collection of the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s total summaries.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GridTotalSummaryItemCollection.#ctor(DevExpress.WinUI.Grid.DataControlBase)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GridTotalSummaryItemCollection"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GroupColumnSummaryData">
      <summary>
        <para>Contains information about <see href="https://docs.devexpress.com/WinUI/102152/controls/data-grid/data-summaries#group-summary">group summaries</see> aligned by columns.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GroupColumnSummaryData.#ctor(DevExpress.WinUI.Grid.Internal.CellControl)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GroupColumnSummaryData"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GroupRowData">
      <summary>
        <para>Contains information about <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group rows</see>.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowData.DataControl">
      <summary>
        <para>Gets the control that contains this <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>.</para>
      </summary>
      <value>The control that contains this group row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowData.GroupSummaries">
      <summary>
        <para>Gets information about group summaries displayed in the group row.</para>
      </summary>
      <value>Information about group summaries displayed in the group row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowData.GroupValue">
      <summary>
        <para>Gets information about the <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>‘s value.</para>
      </summary>
      <value>Information about the group row’s value.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowData.IsExpanded">
      <summary>
        <para>Gets or sets whether the <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see> is expanded.</para>
      </summary>
      <value>true if the group row is expanded; otherwise, false.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GroupRowExpandButton">
      <summary>
        <para>The default expand button displayed in the <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GroupRowExpandButton.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GroupRowExpandButton"/> class.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings">
      <summary>
        <para>Contains style settings that specify the appearance of expand buttons displayed in <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group rows</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.Foreground">
      <summary>
        <para>Gets or sets a brush that paints the expand button’s foreground.</para>
      </summary>
      <value>A brush that paints the expand button’s foreground.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.ForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.Foreground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.HoverForeground">
      <summary>
        <para>Gets or sets a brush that paints the expand button’s foreground when a user hovers the mouse pointer over this button.</para>
      </summary>
      <value>A brush that paints the expand button’s foreground when a user hovers the mouse pointer over this button.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.HoverForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.HoverForeground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.Icon">
      <summary>
        <para>Gets or sets the expand button’s icon.</para>
      </summary>
      <value>The expand button’s icon.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.IconProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.Icon"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.Margin">
      <summary>
        <para>Gets or sets the expand button’s margin.</para>
      </summary>
      <value>The expand button’s margin.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.MarginProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.Margin"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.PressedForeground">
      <summary>
        <para>Gets or sets a brush that paints the expand button’s foreground when a user presses this button.</para>
      </summary>
      <value>A brush that paints the expand button’s foreground when a user presses this button.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.PressedForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.PressedForeground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateAngle">
      <summary>
        <para>Gets or sets an angle, on which the expand button’s icon is rotated from the collapsed state to expanded.</para>
      </summary>
      <value>An angle (in degrees, of clockwise rotation), on which the expand button’s icon is rotated from the collapsed state to expanded.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateAngleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateAngle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateDuration">
      <summary>
        <para>Gets or sets a duration of time for the expand/collapse icon rotation.</para>
      </summary>
      <value>A duration of time for of the expand/collapse icon rotation.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateDurationProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateDuration"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateEasingFunction">
      <summary>
        <para>Gets or sets an easing function applied to the expand/collapse icon rotation.</para>
      </summary>
      <value>An easing function applied to the expand/collapse icon rotation.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateEasingFunctionProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.GroupRowExpandButtonStyleSettings.RotateEasingFunction"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GroupSummaryData">
      <summary>
        <para>Contains information about <see href="https://docs.devexpress.com/WinUI/102152/controls/data-grid/data-summaries#group-summary">group summaries</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GroupSummaryData.#ctor(DevExpress.WinUI.Grid.GroupRowData,DevExpress.WinUI.Grid.ColumnBase,DevExpress.WinUI.Grid.GridGroupSummaryItem,System.Object,System.String)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GroupSummaryData"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupSummaryData.Column">
      <summary>
        <para>Gets a column against which the grid calculates the group summary.</para>
      </summary>
      <value>A column against which the grid calculates the group summary.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupSummaryData.IsFirst">
      <summary>
        <para>Gets whether the group summary item is first in the <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>.</para>
      </summary>
      <value>true if the group summary item is first in the group row; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupSummaryData.IsLast">
      <summary>
        <para>Gets whether the group summary item is last in the <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>.</para>
      </summary>
      <value>true if the group summary item is last in the group row; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupSummaryData.RowData">
      <summary>
        <para>Gets information about the group row.</para>
      </summary>
      <value>Information about the group row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupSummaryData.SummaryItem">
      <summary>
        <para>Gets the group summary item.</para>
      </summary>
      <value>The group summary item.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupSummaryData.Text">
      <summary>
        <para>Gets a summary text displayed in the group row.</para>
      </summary>
      <value>A summary text displayed in the group row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupSummaryData.Value">
      <summary>
        <para>Gets a group summary’s value.</para>
      </summary>
      <value>A group summary’s value.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GroupSummaryDisplayMode">
      <summary>
        <para>Lists values that specify the position of group summaries within a group row.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupSummaryDisplayMode.AlignByColumns">
      <summary>
        <para>Group summaries are displayed under the corresponding columns.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.GroupSummaryDisplayMode.Default">
      <summary>
        <para>Group summaries are aligned to the group row’s right.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.GroupValueData">
      <summary>
        <para>Contains information about a <see href="https://docs.devexpress.com/WinUI/102036/controls/data-grid/visual-elements/group-row">group row</see>‘s value.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.GroupValueData.#ctor(DevExpress.WinUI.Grid.GroupRowData,DevExpress.WinUI.Grid.ColumnBase,System.Object,System.String)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.GroupValueData"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupValueData.Column">
      <summary>
        <para>Gets a group column.</para>
      </summary>
      <value>A group column.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupValueData.RowData">
      <summary>
        <para>Gets information about the group row.</para>
      </summary>
      <value>Information about the group row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupValueData.Text">
      <summary>
        <para>Gets a group value text displayed in the group row.</para>
      </summary>
      <value>A group value text displayed in the group row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.GroupValueData.Value">
      <summary>
        <para>Gets a group column’s value.</para>
      </summary>
      <value>A group column’s value.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.HeaderData">
      <summary>
        <para>Contains information about column headers.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.HeaderData.Column">
      <summary>
        <para>Gets the grid column.</para>
      </summary>
      <value>The grid column.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.HeaderData.DataControl">
      <summary>
        <para>Gets the control that contains this column header.</para>
      </summary>
      <value>The control that contains this column header.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.HeaderData.PropertyChanged">
      <summary>
        <para>Occurs when any of the <see cref="T:DevExpress.WinUI.Grid.HeaderData"/> class properties’ values change.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.HeaderData.ToolTip">
      <summary>
        <para>Gets the column header tooltip.</para>
      </summary>
      <value>The column header tooltip.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.HeaderRowData">
      <summary>
        <para>Contains information about the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Header</see>.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.HeaderRowData.DataContext">
      <summary>
        <para>Gets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s data context.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s data context.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.HeaderRowData.DataControl">
      <summary>
        <para>Gets the control that contains this <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Header</see>.</para>
      </summary>
      <value>The control that contains this row indicator header.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.HeaderRowData.PropertyChanged">
      <summary>
        <para>Occurs when any of the <see cref="T:DevExpress.WinUI.Grid.HeaderRowData"/> class properties’ values change.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.IndicatorState">
      <summary>
        <para>Contains the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">row indicator</see>‘s states.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.IndicatorState.AutoFilterRow">
      <summary>
        <para><see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Auto Filter Row</see></para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.IndicatorState.Changed">
      <summary>
        <para>The focused row was modified.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.IndicatorState.Editing">
      <summary>
        <para>The focused row is in edit mode.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.IndicatorState.Error">
      <summary>
        <para>A non-focused row contains validation errors.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.IndicatorState.Focused">
      <summary>
        <para>The focused row.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.IndicatorState.FocusedError">
      <summary>
        <para>The focused row contains validation errors.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.IndicatorState.NewItemRow">
      <summary>
        <para>The unfocused <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.IndicatorState.None">
      <summary>
        <para>The unfocused row does not contain validation errors.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.InfiniteAsyncSource">
      <summary>
        <para>A <see href="https://docs.devexpress.com/WinUI/100312/controls/data-grid/bind-to-data/virtual-sources">virtual source</see> component that allows you to bind the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> to a data source and display data with infinite scrolling.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.InfiniteAsyncSource.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.InfiniteAsyncSource"/> class.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.FetchRows">
      <summary>
        <para>Allows you to fetch rows.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.GetTotalSummaries">
      <summary>
        <para>Allows you to get total summaries.</para>
      </summary>
    </member>
    <member name="E:DevExpress.WinUI.Grid.InfiniteAsyncSource.GetUniqueValues">
      <summary>
        <para>Allows you to get unique values.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.InfiniteSourceBase">
      <summary>
        <para>Serves as a base class for infinite sources.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.InfiniteSourceBase.FetchMode">
      <summary>
        <para>Gets or sets how to fetch rows.</para>
      </summary>
      <value>The fetch mode.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.InfiniteSourceBase.FetchMoreRows">
      <summary>
        <para>Loads the next portion of rows.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.InfiniteSourceBase.IsResetting">
      <summary>
        <para>Gets whether the virtual source reloads data (a user sorts or filters the grid, or you call the <see cref="M:DevExpress.WinUI.Grid.VirtualSourceBase.RefreshRows"/> method).</para>
      </summary>
      <value>true if the virtual source reloads data; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.InfiniteSourceBase.RowsFetchState">
      <summary>
        <para>Gets a state of the fetch rows operation.</para>
      </summary>
      <value>A state of the fetch rows operation.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.InitNewRowEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.InitNewRow">GridControl.InitNewRow</see> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.InitNewRowEventArgs.#ctor(System.Int32)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.InitNewRowEventArgs"/> class.</para>
      </summary>
      <param name="rowHandle">An integer value representing the handle of the added row. This value is assigned to the <see cref="P:DevExpress.WinUI.Grid.InitNewRowEventArgs.RowHandle">InitNewRowEventArgs.RowHandle</see> property.</param>
    </member>
    <member name="P:DevExpress.WinUI.Grid.InitNewRowEventArgs.RowHandle">
      <summary>
        <para>Gets the handle of the added row.</para>
      </summary>
      <value>An integer value that specifies the added row’s handle.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.InvalidRowException">GridControl.InvalidRowException</see> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.Int32,System.String,System.String,System.Exception,DevExpress.WinUI.Grid.ExceptionMode)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs.ErrorText">
      <summary>
        <para>Gets or sets the error description.</para>
      </summary>
      <value>A string value that specifies the error description.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs.Exception">
      <summary>
        <para>Gets the exception that raised the <see cref="E:DevExpress.WinUI.Grid.GridControl.InvalidRowException">GridControl.InvalidRowException</see> event.</para>
      </summary>
      <value>A <see cref="T:System.Exception"/> object representing the exception that raised the event.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs.ExceptionMode">
      <summary>
        <para>Gets or sets a value that specifies how an exception should be handled.</para>
      </summary>
      <value>An <see cref="T:DevExpress.WinUI.Grid.ExceptionMode"/> enumeration value that specifies how an exception should be handled.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.InvalidRowExceptionEventArgs.WindowCaption">
      <summary>
        <para>Gets or sets the error window’s caption.</para>
      </summary>
      <value>A <see cref="T:System.String"/> value that specifies the caption of the error window.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ItemsSourceChangedEventArgs">
      <summary>
        <para>Provides data for the <see cref="E:DevExpress.WinUI.Grid.DataControlBase.ItemsSourceChanged"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.ItemsSourceChangedEventArgs.#ctor(DevExpress.WinUI.Grid.DataControlBase,System.Object,System.Object)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.ItemsSourceChangedEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.MultiSelectMode">
      <summary>
        <para>Lists values that specify the multiple selection mode.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.MultiSelectMode.Cell">
      <summary>
        <para>Allows you to click a cell to add/remove it from the selection.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.MultiSelectMode.CellExtended">
      <summary>
        <para>Allows you to use Ctrl and Shift keys to select multiple cells.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.MultiSelectMode.None">
      <summary>
        <para>Multi-selection is disabled.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.MultiSelectMode.Row">
      <summary>
        <para>Allows you to click a row to add/remove it from the selection.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.MultiSelectMode.RowExtended">
      <summary>
        <para>Allows you to use Ctrl and Shift keys to select multiple rows.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.NavigationStyle">
      <summary>
        <para>Lists values that specify whether to allow users to focus rows and cells.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.NavigationStyle.Cell">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays the focused row and focused cell. Users are allowed to edit data.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.NavigationStyle.None">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays neither the focused row nor the focused cell. Users are not allowed to edit data.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.NavigationStyle.Row">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays only the focused row. The focused cell is not displayed. Users are not allowed to edit data.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.NewItemRowData">
      <summary>
        <para>Contains information about the <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.NewItemRowPosition">
      <summary>
        <para>Lists values that specify the <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>‘s position.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.NewItemRowPosition.Bottom">
      <summary>
        <para>The new item row is displayed below all data and grid rows.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.NewItemRowPosition.None">
      <summary>
        <para>The new item row is not shown.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.NewItemRowPosition.Top">
      <summary>
        <para>The new item row is displayed above all data and grid rows.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.PasteOperationException.#ctor(System.Exception)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.PasteOperationException"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.PredefinedFormatNames">
      <summary>
        <para>Lists names of the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s predefined formats used in conditional formatting rules.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.BoldText">
      <summary>
        <para>This format changes a cell’s font style to Bold.</para>
      </summary>
      <value>BoldText</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.GreenFillWithDarkGreenText">
      <summary>
        <para>This format changes a cell’s background to Green and foreground to DarkGreen.</para>
      </summary>
      <value>GreenFillWithDarkGreenText</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.GreenText">
      <summary>
        <para>This format changes a cell’s foreground to Green.</para>
      </summary>
      <value>GreenText</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.ItalicText">
      <summary>
        <para>This format changes a cell’s font style to Italic.</para>
      </summary>
      <value>ItalicText</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.LightGreenFill">
      <summary>
        <para>This format changes a cell’s background to LightGreen.</para>
      </summary>
      <value>LightGreenFill</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.LightRedFill">
      <summary>
        <para>This format changes a cell’s background to LightRed.</para>
      </summary>
      <value>LightRedFill</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.LightRedFillWithDarkRedText">
      <summary>
        <para>This format changes a cell’s background to LightRed and foreground to DarkRed.</para>
      </summary>
      <value>LightRedFillWithDarkRedText</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.RedText">
      <summary>
        <para>This format changes a cell’s foreground to Red.</para>
      </summary>
      <value>RedText</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.PredefinedFormatNames.YellowFillWithDarkYellowText">
      <summary>
        <para>This format changes a cell’s background to Yellow and foreground to DarkYellow.</para>
      </summary>
      <value>YellowFillWithDarkYellowText</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowAllowEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.GroupRowExpanded"/> and <see cref="E:DevExpress.WinUI.Grid.GridControl.GroupRowCollapsed"/> events.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.RowAllowEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.Int32)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.RowAllowEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowAllowEventArgs.Allow">
      <summary>
        <para>Gets or sets whether to expand/collapse the group row.</para>
      </summary>
      <value>true to expand/collapse the group row; otherwise, false.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowData">
      <summary>
        <para>Contains information about data rows.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowData.IsLastRowInGroup">
      <summary>
        <para>Gets whether the row is the last row in a <see href="https://docs.devexpress.com/WinUI/102158/controls/data-grid/group-data">group</see>.</para>
      </summary>
      <value>true if the row is the last row in a group; otherwise, false.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowDataBase">
      <summary>
        <para>Contains information about grid rows.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.DataContext">
      <summary>
        <para>Gets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s data context.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s data context.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.DataControl">
      <summary>
        <para>Gets the control that contains this row.</para>
      </summary>
      <value>The control that contains this row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.IndicatorImage">
      <summary>
        <para>Gets an image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> for the row.</para>
      </summary>
      <value>An image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> for the row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.IndicatorState">
      <summary>
        <para>Gets the row’s state. The <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> displays its icons based on this state.</para>
      </summary>
      <value>The row’s state.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.Level">
      <summary>
        <para>Gets the row’s <see href="https://docs.devexpress.com/WinUI/102158/controls/data-grid/group-data">group level</see>.</para>
      </summary>
      <value>The row’s group level.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.RowDataBase.PropertyChanged">
      <summary>
        <para>Occurs when any of the <see cref="T:DevExpress.WinUI.Grid.RowDataBase"/> class properties’ values change.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.Row">
      <summary>
        <para>Gets a record in a data source.</para>
      </summary>
      <value>A record in a data source.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.RowHandle">
      <summary>
        <para>Gets the row’s handle.</para>
      </summary>
      <value>The row’s handle.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.SelectionState">
      <summary>
        <para>Gets the row’s selection state: focused, selected, focused and selected, or neither.</para>
      </summary>
      <value>The row’s selection state.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.UnboundData">
      <summary>
        <para>Gets the row’s unbound values.</para>
      </summary>
      <value>A dictionary where each field name corresponds to the row’s unbound value.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.ValidationError">
      <summary>
        <para>Gets information about the row’s validation error.</para>
      </summary>
      <value>Information about the row’s validation error.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowDataBase.ValidationErrorText">
      <summary>
        <para>Gets the row’s validation error text.</para>
      </summary>
      <value>The row’s validation error text.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.GroupRowExpanded">GridControl.GroupRowExpanded</see> and <see cref="E:DevExpress.WinUI.Grid.GridControl.GroupRowCollapsed">GridControl.GroupRowCollapsed</see> events.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.RowEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.Int32,System.Object)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.RowEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.RowEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.Int32)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.RowEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowEventArgs.Row">
      <summary>
        <para>Gets the processed row.</para>
      </summary>
      <value>The processed row.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowEventArgs.RowHandle">
      <summary>
        <para>Gets the processed row’s handle.</para>
      </summary>
      <value>The processed row’s handle.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowEventArgs.Source">
      <summary>
        <para>Gets the GridControl that raised this event.</para>
      </summary>
      <value>The GridControl that raised this event.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowEventHandler">
      <summary>
        <para>Represents a method that will handle the <see cref="E:DevExpress.WinUI.Grid.GridControl.GroupRowExpanded">GridControl.GroupRowExpanded</see> and <see cref="E:DevExpress.WinUI.Grid.GridControl.GroupRowCollapsed">GridControl.GroupRowCollapsed</see> events.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowFilterEventArgs">
      <summary>
        <para>Contains data for the <see cref="E:DevExpress.WinUI.Grid.GridControl.CustomRowFilter"/> event.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.RowFilterEventArgs.#ctor(DevExpress.WinUI.Grid.GridControl,System.Int32,System.Boolean)">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.RowFilterEventArgs"/> class with specified settings.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowFilterEventArgs.DefaultVisibility">
      <summary>
        <para>Gets the row’s visibility calculated by the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>.</para>
      </summary>
      <value>true if the processed row is visible; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowFilterEventArgs.ListSourceRowIndex">
      <summary>
        <para>Gets the row’s index in a data source.</para>
      </summary>
      <value>The row’s index in a data source.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowFilterEventArgs.Source">
      <summary>
        <para>Gets a control that raised the event.</para>
      </summary>
      <value>A control that raised the event.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowFilterEventArgs.Visible">
      <summary>
        <para>Gets or sets whether to display the processed row.</para>
      </summary>
      <value>true to display the processed row; otherwise, false.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowIndicatorImage">
      <summary>
        <para>The default <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">row indicator</see> icon with the row validation tooltip.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.RowIndicatorImage.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.RowIndicatorImage"/> class.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowIndicatorStyleSettings">
      <summary>
        <para>Contains style settings that specify the appearance of the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.RowIndicatorStyleSettings"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.AutoFilterRowImage">
      <summary>
        <para>Gets or sets an image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> for the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Auto Filter Row</see>.</para>
      </summary>
      <value>An image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> for the <see href="https://docs.devexpress.com/WinUI/102391/controls/data-grid/visual-elements/auto-filter-row">Auto Filter Row</see>.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.AutoFilterRowImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.AutoFilterRowImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.Background">
      <summary>
        <para>Gets or sets a brush that paints the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>‘s background.</para>
      </summary>
      <value>A brush that paints the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>‘s background.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.BackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.Background"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.BorderBrush">
      <summary>
        <para>Gets or sets a brush that paints the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>‘s borders.</para>
      </summary>
      <value>A brush that paints the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see>‘s borders.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.BorderBrushProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.BorderBrush"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.ChangedImage">
      <summary>
        <para>Gets or sets an image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> if the focused row was modified.</para>
      </summary>
      <value>An image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> if the focused row was modified.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.ChangedImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.ChangedImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.EditingImage">
      <summary>
        <para>Gets or sets an image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> if the focused row is in edit mode.</para>
      </summary>
      <value>An image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> if the focused row is in edit mode.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.EditingImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.EditingImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.ErrorImage">
      <summary>
        <para>Gets or sets an image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> if a non-focused row contains validation errors.</para>
      </summary>
      <value>An image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> if a non-focused row contains validation errors.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.ErrorImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.ErrorImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.FocusedErrorImage">
      <summary>
        <para>Gets or sets an image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> if the focused row contains validation errors.</para>
      </summary>
      <value>An image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> if the focused row contains validation errors.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.FocusedErrorImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.FocusedErrorImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.FocusedImage">
      <summary>
        <para>Gets or sets an image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> for the focused row.</para>
      </summary>
      <value>An image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> for the focused row.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.FocusedImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.FocusedImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.NewItemRowImage">
      <summary>
        <para>Gets or sets an image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> for the <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>.</para>
      </summary>
      <value>An image displayed in the <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">Row Indicator Panel</see> for the <see href="https://docs.devexpress.com/WinUI/102389/controls/data-grid/visual-elements/new-item-row">New Item Row</see>.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.NewItemRowImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.NewItemRowImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.NoneImage">
      <summary>
        <para>Gets or sets an image displayed in a <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">row indicator cell</see> if the cell does not display other icons.</para>
      </summary>
      <value>An image displayed in a <see href="https://docs.devexpress.com/WinUI/102353/controls/data-grid/visual-elements/row-indicator-panel">row indicator cell</see> if the cell does not display other icons.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.NoneImageProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowIndicatorStyleSettings.NoneImage"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowSelectionState">
      <summary>
        <para>Contains values that specify a row’s selection state.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowSelectionState.Focused">
      <summary>
        <para>The row is focused.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowSelectionState.FocusedSelected">
      <summary>
        <para>The row is focused and selected at the same time.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowSelectionState.None">
      <summary>
        <para>The row is not focused or selected.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowSelectionState.Selected">
      <summary>
        <para>The row is selected.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowsFetchState">
      <summary>
        <para>Lists states of the fetch rows operation.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowsFetchState.ErrorFinished">
      <summary>
        <para>An error occurred, and a user cannot retry to load rows.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowsFetchState.ErrorRetry">
      <summary>
        <para>An error occurred, and a user can retry to load rows.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowsFetchState.Finished">
      <summary>
        <para>Rows are loaded from the data source.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowsFetchState.InProgress">
      <summary>
        <para>The virtual source loads rows from the data source.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.RowStyleSettings">
      <summary>
        <para>Contains style settings that allow you to specify a grid row appearance.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.RowStyleSettings.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.RowStyleSettings"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowStyleSettings.Background">
      <summary>
        <para>Gets or sets a brush that paints a row’s background.</para>
      </summary>
      <value>A brush that paints a row’s background.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowStyleSettings.BackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowStyleSettings.Background"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBackground">
      <summary>
        <para>Gets or sets a brush that paints the focused row’s background.</para>
      </summary>
      <value>A brush that paints the focused row’s background.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBorderBrush">
      <summary>
        <para>Gets or sets a brush that paints the focused row’s border.</para>
      </summary>
      <value>A brush that paints the focused row’s border.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBorderBrushProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBorderBrush"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBorderThickness">
      <summary>
        <para>Gets or sets a thickness of the focused row’s border.</para>
      </summary>
      <value>A thickness of the focused row’s border.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBorderThicknessProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedBorderThickness"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedCornerRadius">
      <summary>
        <para>Gets or sets a corner radius of the focused row’s border.</para>
      </summary>
      <value>A corner radius of the focused row’s border.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowStyleSettings.FocusedCornerRadiusProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedCornerRadius"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedSelectedBackground">
      <summary>
        <para>Gets or sets a brush that paints a row’s background when this row is focused and selected at the same time.</para>
      </summary>
      <value>A brush that paints a row’s background when this row is focused and selected at the same time.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowStyleSettings.FocusedSelectedBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowStyleSettings.FocusedSelectedBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowStyleSettings.HoverBackground">
      <summary>
        <para>Gets or sets a brush that paints a row’s background when a user hovers the mouse pointer over this row.</para>
      </summary>
      <value>A brush that paints a row’s background when a user hovers the mouse pointer over this row.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowStyleSettings.HoverBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowStyleSettings.HoverBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.RowStyleSettings.SelectedBackground">
      <summary>
        <para>Gets or sets a brush that paints the selected row’s background.</para>
      </summary>
      <value>A brush that paints the selected row’s background.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.RowStyleSettings.SelectedBackgroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.RowStyleSettings.SelectedBackground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.SearchPanel">
      <summary>
        <para>The search panel control.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.SearchPanel.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.SearchPanel"/> class.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanel.ApplySearchCommandProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanel.ApplySearchCommand"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanel.DataControlProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanel.DataControl"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanel.FindModeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanel.FindMode"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanel.LiveSearchInputDelayProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanel.LiveSearchInputDelay"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanel.MinDesiredWidthProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanel.MinDesiredWidth"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanel.SearchDelayProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanel.SearchDelay"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanel.SearchStringProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanel.SearchString"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.SearchPanelHighlightSettings">
      <summary>
        <para>Contains settings that allow you to specify the appearance of search results.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.SearchPanelHighlightSettings"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontFamily">
      <summary>
        <para>Gets or sets a search result’s font family.</para>
      </summary>
      <value>A search result’s font family.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontFamilyProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontFamily"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontSize">
      <summary>
        <para>Gets or sets a search result’s font size.</para>
      </summary>
      <value>A search result’s font size.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontSizeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontSize"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontStyle">
      <summary>
        <para>Gets or sets a search result’s font style.</para>
      </summary>
      <value>A search result’s font style.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontStyleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontStyle"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontWeight">
      <summary>
        <para>Gets or sets a search result’s font weight.</para>
      </summary>
      <value>A search result’s font weight.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontWeightProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.FontWeight"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.Foreground">
      <summary>
        <para>Gets or sets a brush that paints a search result’s foreground.</para>
      </summary>
      <value>A brush that paints a search result’s foreground.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.ForegroundProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SearchPanelHighlightSettings.Foreground"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ShowFilterPanelMode">
      <summary>
        <para>Lists values that specify when a grid displays the <see href="https://docs.devexpress.com/WinUI/102247/controls/data-grid/visual-elements/filter-panel">Filter Panel</see>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ShowFilterPanelMode.Default">
      <summary>
        <para>The filter panel is shown when data is filtered. Otherwise, the filter panel is hidden.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ShowFilterPanelMode.Never">
      <summary>
        <para>The filter panel is hidden.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ShowFilterPanelMode.ShowAlways">
      <summary>
        <para>The filter panel is always shown at the bottom of the grid.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ShowSearchPanelMode">
      <summary>
        <para>Lists values that specify when the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see> is displayed.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ShowSearchPanelMode.Always">
      <summary>
        <para>The <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see> is always visible. Users cannot hide this panel.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ShowSearchPanelMode.Default">
      <summary>
        <para>The <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see> is hidden.</para>
        <para>CTRL+F - Invokes the Search Panel. Ensure that no cell editor is opened before invoking the <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see>. Otherwise, the shortcut is intercepted by the in-place editor.</para>
        <para>ESC - Clears the search box. If the search box is empty, pressing ESC closes the Search Panel.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ShowSearchPanelMode.Never">
      <summary>
        <para>The <see href="https://docs.devexpress.com/WinUI/102252/controls/data-grid/visual-elements/search-panel">Search Panel</see> is always hidden. Users cannot show this panel.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.SummaryItemAlignment">
      <summary>
        <para>Lists values that specify a summary item’s horizontal alignment in the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemAlignment.Default">
      <summary>
        <para>A summary is displayed in the <see href="https://docs.devexpress.com/WinUI/402938/controls/data-grid/visual-elements/summary-panel">Summary Panel</see>.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemAlignment.Left">
      <summary>
        <para>A summary is displayed in the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see> and aligned to the left.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemAlignment.Right">
      <summary>
        <para>A summary is displayed in the <see href="https://docs.devexpress.com/WinUI/102037/controls/data-grid/visual-elements/fixed-summary-panel">Fixed Summary Panel</see> and aligned to the right.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.SummaryItemBase">
      <summary>
        <para>Serves as a base class for summary items.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SummaryItemBase.DisplayFormat">
      <summary>
        <para>Gets or sets the pattern used to format the summary value. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.String"/> value that specifies the pattern used to format the summary value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemBase.DisplayFormatProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SummaryItemBase.DisplayFormat">SummaryItemBase.DisplayFormat</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SummaryItemBase.FieldName">
      <summary>
        <para>Gets or sets the name of a data source field whose values are used for summary calculation. This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.String"/> value that specifies the name of the data source field whose values are used for summary calculation.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemBase.FieldNameProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SummaryItemBase.FieldName">SummaryItemBase.FieldName</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SummaryItemBase.ShowInColumn">
      <summary>
        <para>Gets or sets the summary item’s position within the total summary panel (for total summaries) or group row (for group summaries). This is a dependency property.</para>
      </summary>
      <value>A <see cref="T:System.String"/> value that specifies the column’s field name.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemBase.ShowInColumnProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SummaryItemBase.ShowInColumn">SummaryItemBase.ShowInColumn</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SummaryItemBase.SummaryType">
      <summary>
        <para>Gets or sets the aggregate function type. This is a dependency property.</para>
      </summary>
      <value>The aggregate function type.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemBase.SummaryTypeProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SummaryItemBase.SummaryType">SummaryItemBase.SummaryType</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SummaryItemBase.Tag">
      <summary>
        <para>Gets or sets custom data associated with the summary item. This is a dependency property.</para>
      </summary>
      <value>An object associated with the summary item.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemBase.TagProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SummaryItemBase.Tag">SummaryItemBase.Tag</see> dependency property.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.SummaryItemBase.Visible">
      <summary>
        <para>Gets or sets whether the summary item is displayed within a grid. This is a dependency property.</para>
      </summary>
      <value>true to display the summary item within a grid; otherwise, false.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryItemBase.VisibleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.SummaryItemBase.Visible">SummaryItemBase.Visible</see> dependency property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.SummaryType">
      <summary>
        <para>Lists aggregate function types.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryType.Avg">
      <summary>
        <para>The average value of a column.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryType.Count">
      <summary>
        <para>The record count.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryType.Max">
      <summary>
        <para>The maximum value in a column.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryType.Min">
      <summary>
        <para>The minimum value in a column.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.SummaryType.Sum">
      <summary>
        <para>The sum of all values in a column.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.ToolTipShowMode">
      <summary>
        <para>Lists values that specify whether to display tooltips for data cells and column headers.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ToolTipShowMode.Default">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays tooltips for all cells if you specify a custom tooltip (the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.CellToolTipTemplate"/> property for data cells and the <see cref="P:DevExpress.WinUI.Grid.ColumnBase.HeaderToolTip"/> or <see cref="P:DevExpress.WinUI.Grid.ColumnBase.HeaderToolTipTemplate"/> properties for column headers).</para>
        <para>If you do not specify a custom tooltip, the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays tooltips only for trimmed data cells and column headers.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ToolTipShowMode.Never">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> does not display tooltips.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.ToolTipShowMode.TrimmedOnly">
      <summary>
        <para>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/> displays tooltips for data cells and column headers whose values are trimmed.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.TopBottomRule">
      <summary>
        <para>Lists rules used in top-bottom format conditions.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRule.AboveAverage">
      <summary>
        <para>The format is applied to cells whose values are above the average column value.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRule.BelowAverage">
      <summary>
        <para>The format is applied to cells whose values are below the average column value.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRule.BottomItems">
      <summary>
        <para>The format is applied to cells whose values are the lowest in the column. The number of cells is specified by the <see cref="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Threshold"/> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRule.BottomPercent">
      <summary>
        <para>The format is applied to cells whose values are the lowest in the column. The percentage of cells is specified by the <see cref="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Threshold"/> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRule.TopItems">
      <summary>
        <para>The format is applied to cells whose values are the highest in the column. The number of cells is specified by the <see cref="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Threshold"/> property.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRule.TopPercent">
      <summary>
        <para>The format is applied to cells whose values are the highest in the column. The percentage of cells is specified by the <see cref="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Threshold"/> property.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition">
      <summary>
        <para>Represents the top-bottom and average <see href="https://docs.devexpress.com/WinUI/101446/controls/data-grid/conditional-formatting">conditional formats</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Format">
      <summary>
        <para>Specifies the custom formatting settings. This is a dependency property.</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.Format object that defines the formatting settings.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.FormatProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Format">TopBottomRuleFormatCondition.Format</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Rule">
      <summary>
        <para>Specifies the rule for a conditional format. This is a dependency property.</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.TopBottomRule enumeration value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.RuleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Rule">TopBottomRuleFormatCondition.Rule</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Threshold">
      <summary>
        <para>Specifies the number or percentage of cells (or corresponding rows) to format. This is a dependency property.</para>
      </summary>
      <value>A number of cells to format.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.ThresholdProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.TopBottomRuleFormatCondition.Threshold">TopBottomRuleFormatCondition.Threshold</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.TotalSummaryControl">
      <summary>
        <para>The total summary control.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.TotalSummaryControl.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.TotalSummaryControl"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.TotalSummaryControl.Column">
      <summary>
        <para>Gets or sets the grid column which total summary values are displayed in the <see cref="T:DevExpress.WinUI.Grid.TotalSummaryControl"/>. This is a dependency property.</para>
      </summary>
      <value>The grid column which total summary values are displayed in the <see cref="T:DevExpress.WinUI.Grid.TotalSummaryControl"/>.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TotalSummaryControl.ColumnProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.TotalSummaryControl.Column"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.TotalSummaryControl.DataControl">
      <summary>
        <para>Gets the control that contains the total summary displayed in the <see cref="T:DevExpress.WinUI.Grid.TotalSummaryControl"/>. This is a dependency property.</para>
      </summary>
      <value>The control that contains the total summary displayed in the <see cref="T:DevExpress.WinUI.Grid.TotalSummaryControl"/>.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.TotalSummaryControl.DataControlProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.TotalSummaryControl.DataControl"/> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.TotalSummaryRowData">
      <summary>
        <para>Contains information about total summaries in the <see href="https://docs.devexpress.com/WinUI/402938/controls/data-grid/visual-elements/summary-panel">Summary Panel</see>.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.TotalSummaryRowData.DataContext">
      <summary>
        <para>Gets the <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s data context.</para>
      </summary>
      <value>The <see cref="T:DevExpress.WinUI.Grid.GridControl"/>‘s data context.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.TotalSummaryRowData.DataControl">
      <summary>
        <para>Gets the control that contains this total summary.</para>
      </summary>
      <value>The control that contains this total summary.</value>
    </member>
    <member name="E:DevExpress.WinUI.Grid.TotalSummaryRowData.PropertyChanged">
      <summary>
        <para>Occurs when any of the <see cref="T:DevExpress.WinUI.Grid.TotalSummaryRowData"/> class properties’ values change.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.UniqueDuplicateRule">
      <summary>
        <para>Lists rules used in unique-duplicate format conditions.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.UniqueDuplicateRule.Duplicate">
      <summary>
        <para>The format is applied to cells whose values are duplicated.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Grid.UniqueDuplicateRule.Unique">
      <summary>
        <para>The format is applied to cells whose values are unique.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition">
      <summary>
        <para>A Unique-Duplicate <see href="https://docs.devexpress.com/WinUI/101446/controls/data-grid/conditional-formatting">conditional format</see>.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.#ctor">
      <summary>
        <para>Initializes a new instance of the <see cref="T:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition"/> class.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.Format">
      <summary>
        <para>Specifies the custom formatting settings. This is a dependency property.</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.Format object that defines the formatting settings.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.FormatProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.Format">UniqueDuplicateRuleFormatCondition.Format</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.Rule">
      <summary>
        <para>Specifies the rule for a conditional format. This is a dependency property.</para>
      </summary>
      <value>A DevExpress.WinUI.Grid.UniqueDuplicateRule enumeration value.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.RuleProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.Rule">UniqueDuplicateRuleFormatCondition.Rule</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.SelectiveExpression">
      <summary>
        <para>Gets or sets an expression that selects data records to which the Unique/Duplicate conditional format is applied. This is a dependency property.</para>
      </summary>
      <value>A string value that specifies an expression that selects data records to which the Unique/Duplicate conditional format is applied.</value>
    </member>
    <member name="F:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.SelectiveExpressionProperty">
      <summary>
        <para>Identifies the <see cref="P:DevExpress.WinUI.Grid.UniqueDuplicateRuleFormatCondition.Rule">UniqueDuplicateRuleFormatCondition.Rule</see> dependency property.</para>
      </summary>
      <value>A dependency property identifier.</value>
    </member>
    <member name="T:DevExpress.WinUI.Grid.VirtualSourceBase">
      <summary>
        <para>Serves as a base class for <see href="https://docs.devexpress.com/WinUI/100312/controls/data-grid/bind-to-data/virtual-sources">virtual sources</see>.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.VirtualSourceBase.AreRowsFetching">
      <summary>
        <para>Gets whether the virtual source loads rows from a data source.</para>
      </summary>
      <value>true if the virtual source loads rows from a data source; otherwise, false.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.VirtualSourceBase.Count">
      <summary>
        <para>Gets the number of loaded rows.</para>
      </summary>
      <value>The number of loaded rows.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.VirtualSourceBase.CustomProperties">
      <summary>
        <para>Gets or sets custom property descriptors.</para>
      </summary>
      <value>Custom property descriptors.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.VirtualSourceBase.Dispose">
      <summary>
        <para>Disposes of the virtual source.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.VirtualSourceBase.ElementType">
      <summary>
        <para>Gets or sets the type of objects retrieved from a data source.</para>
      </summary>
      <value>The type of objects retrieved from a data source.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.VirtualSourceBase.FetchRowsException">
      <summary>
        <para>Gets an exception occurred if the virtual source cannot fetch rows.</para>
      </summary>
      <value>An exception occurred if the virtual source cannot fetch rows.</value>
    </member>
    <member name="P:DevExpress.WinUI.Grid.VirtualSourceBase.IsRowUpdating">
      <summary>
        <para>For internal use.</para>
      </summary>
    </member>
    <member name="M:DevExpress.WinUI.Grid.VirtualSourceBase.RefreshRows">
      <summary>
        <para>Reloads all rows.</para>
      </summary>
    </member>
    <member name="P:DevExpress.WinUI.Grid.VirtualSourceBase.SummaryInProgressText">
      <summary>
        <para>Gets or sets the text displayed in <see href="https://docs.devexpress.com/WinUI/102152/controls/data-grid/data-summaries">total summary items</see> when the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> calculates summary.</para>
      </summary>
      <value>The text displayed in total summary items when the <see cref="T:DevExpress.WinUI.Grid.GridControl"/> calculates summary.</value>
    </member>
    <member name="M:DevExpress.WinUI.Grid.VirtualSourceBase.UpdateSummaries">
      <summary>
        <para>Recalculates all summaries.</para>
      </summary>
    </member>
    <member name="N:DevExpress.WinUI.Localization">
      <summary>
        <para>Contains classes and enumerations that are intended to localize the User Interface of DevExpress WinUI Controls.</para>
      </summary>
    </member>
    <member name="T:DevExpress.WinUI.Localization.GridStringID">
      <summary>
        <para>Contains values corresponding to strings that can be localized.</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.CheckBoxColumnFalse">
      <summary>
        <para>False</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.CheckBoxColumnTrue">
      <summary>
        <para>True</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.ColumnChooserCaption">
      <summary>
        <para>Column Chooser</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_BeyondFilterName">
      <summary>
        <para>Beyond</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_BeyondThisYearFilterName">
      <summary>
        <para>Beyond this year</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_EarlierFilterName">
      <summary>
        <para>Earlier</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_EarlierThisMonthFilterName">
      <summary>
        <para>Earlier this month</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_EarlierThisWeekFilterName">
      <summary>
        <para>Earlier this week</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_EarlierThisYearFilterName">
      <summary>
        <para>Earlier this year</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_EmptyFilterName">
      <summary>
        <para>Empty</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_FilterBySpecificDateFilterName">
      <summary>
        <para>Filter by a specific date</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_LastWeekFilterName">
      <summary>
        <para>Last week</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_LaterThisMonthFilterName">
      <summary>
        <para>Later this month</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_LaterThisWeekFilterName">
      <summary>
        <para>Later this week</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_LaterThisYearFilterName">
      <summary>
        <para>Later this year</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_NextWeekFilterName">
      <summary>
        <para>Next week</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_PriorToThisYearFilterName">
      <summary>
        <para>Prior to this year</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_ShowAllFilterName">
      <summary>
        <para>Show all</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_ThisMonthFilterName">
      <summary>
        <para>This month</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_ThisWeekFilterName">
      <summary>
        <para>This week</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_TodayFilterName">
      <summary>
        <para>Today</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_TomorrowFilterName">
      <summary>
        <para>Tomorrow</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DateFiltering_YesterdayFilterName">
      <summary>
        <para>Yesterday</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Avg">
      <summary>
        <para>Avg of {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Count">
      <summary>
        <para>Count</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Max">
      <summary>
        <para>Max of {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Min">
      <summary>
        <para>Min of {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Sum">
      <summary>
        <para>Sum of {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Value_Avg">
      <summary>
        <para>{0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Value_Count">
      <summary>
        <para>{0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Value_Max">
      <summary>
        <para>{0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Value_Min">
      <summary>
        <para>{0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultFixedTotalSummaryFormatString_Value_Sum">
      <summary>
        <para>{0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatString_Avg">
      <summary>
        <para>Avg of {1} is {0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatString_Count">
      <summary>
        <para>Count={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatString_Max">
      <summary>
        <para>Max of {1} is {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatString_Min">
      <summary>
        <para>Min of {1} is {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatString_Sum">
      <summary>
        <para>Sum of {1} is {0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatStringInSameColumn_Avg">
      <summary>
        <para>Avg={0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatStringInSameColumn_Count">
      <summary>
        <para>Count={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatStringInSameColumn_Max">
      <summary>
        <para>Max={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatStringInSameColumn_Min">
      <summary>
        <para>Min={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupColumnSummaryFormatStringInSameColumn_Sum">
      <summary>
        <para>Sum={0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupSummaryFormatString_Avg">
      <summary>
        <para>Avg of {1} is {0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupSummaryFormatString_Count">
      <summary>
        <para>Count={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupSummaryFormatString_Max">
      <summary>
        <para>Max of {1} is {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupSummaryFormatString_Min">
      <summary>
        <para>Min of {1} is {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultGroupSummaryFormatString_Sum">
      <summary>
        <para>Sum of {1} is {0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatString_Avg">
      <summary>
        <para>Avg of {1} is {0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatString_Count">
      <summary>
        <para>Count={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatString_Max">
      <summary>
        <para>Max of {1} is {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatString_Min">
      <summary>
        <para>Min of {1} is {0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatString_Sum">
      <summary>
        <para>Sum of {1} is {0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatStringInSameColumn_Avg">
      <summary>
        <para>Avg={0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatStringInSameColumn_Count">
      <summary>
        <para>Count={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatStringInSameColumn_Max">
      <summary>
        <para>Max={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatStringInSameColumn_Min">
      <summary>
        <para>Min={0}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.DefaultTotalSummaryFormatStringInSameColumn_Sum">
      <summary>
        <para>Sum={0:0.##}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.ErrorWindowTitle">
      <summary>
        <para>Error</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.GridGroupPanelText">
      <summary>
        <para>Drag a column header here to group by that column</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.GridGroupRowDisplayTextFormat">
      <summary>
        <para>{0}: {1}</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.GridNewRowText">
      <summary>
        <para>Click here to add a new row</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.GridOutlookIntervals">
      <summary>
        <para>Older;Last Month;Earlier this Month;Three Weeks Ago;Two Weeks Ago;Last Week;;;;;;;;Yesterday;Today;Tomorrow;;;;;;;;Next Week;Two Weeks Away;Three Weeks Away;Later this Month;Next Month;Beyond Next Month;</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.InvalidRowExceptionMessage">
      <summary>
        <para>Do you want to correct the value?</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnClearSorting">
      <summary>
        <para>Clear Sorting</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnGroup">
      <summary>
        <para>Group By This Column</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnHideColumnChooser">
      <summary>
        <para>Hide Column Chooser</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnHideGroupPanel">
      <summary>
        <para>Hide Group Panel</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnShowColumnChooser">
      <summary>
        <para>Show Column Chooser</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnShowGroupPanel">
      <summary>
        <para>Show Group Panel</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnSortAscending">
      <summary>
        <para>Sort Ascending</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnSortDescending">
      <summary>
        <para>Sort Descending</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuColumnUngroup">
      <summary>
        <para>Ungroup</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuGroupPanelClearGrouping">
      <summary>
        <para>Clear Grouping</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuGroupPanelFullCollapse">
      <summary>
        <para>Full Collapse</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.MenuGroupPanelFullExpand">
      <summary>
        <para>Full Expand</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.PopupFilterAll">
      <summary>
        <para>(All)</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.PopupFilterBlanks">
      <summary>
        <para>(Blanks)</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.PopupFilterCancelButtonText">
      <summary>
        <para>Cancel</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.PopupFilterNonBlanks">
      <summary>
        <para>(Non blanks)</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.PopupFilterOKButtonText">
      <summary>
        <para>OK</para>
      </summary>
    </member>
    <member name="F:DevExpress.WinUI.Localization.GridStringID.SearchEditorNullText">
      <summary>
        <para>Search</para>
      </summary>
    </member>
  </members>
</doc>