menu

WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class GridQueryCoveredRangeEventArgs - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Class GridQueryCoveredRangeEventArgs

    GridQueryCoveredRangeEventArgs is a custom event argument class used by the QueryCoveredRange event to query information about covered cells at a specified cell.

    This event allows you to specify covered ranges at run-time, e.g when you have a large grid with repeating patterns of covered ranges. If the specified row and column index is part of a covered cell's range, you should assign the coordinates of the covered cell to Range and set Handled to True.

    Handled indicates that you supplied data from your event handler and no further querying for data about covered range information for this cell is necessary.

    Inheritance
    System.Object
    System.EventArgs
    SyncfusionEventArgs
    SyncfusionHandledEventArgs
    GridQueryCoveredRangeEventArgs
    Inherited Members
    SyncfusionEventArgs.ToString()
    SyncfusionHandledEventArgs.Handled
    System.EventArgs.Empty
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Syncfusion.Windows.Controls.Grid
    Assembly: Syncfusion.Grid.Wpf.dll
    Syntax
    public class GridQueryCoveredRangeEventArgs : SyncfusionHandledEventArgs

    Constructors

    GridQueryCoveredRangeEventArgs(RowColumnIndex)

    Initalizes a new object.

    Declaration
    public GridQueryCoveredRangeEventArgs(RowColumnIndex cellRowColumnIndex)
    Parameters
    Type Name Description
    RowColumnIndex cellRowColumnIndex

    GridQueryCoveredRangeEventArgs(RowColumnIndex, CoveredCellInfo)

    Initalizes a new object.

    Declaration
    public GridQueryCoveredRangeEventArgs(RowColumnIndex cellRowColumnIndex, CoveredCellInfo range)
    Parameters
    Type Name Description
    RowColumnIndex cellRowColumnIndex
    CoveredCellInfo range

    A CoveredCellInfo that will receive the resulting range for the covered cell.

    Properties

    CellRowColumnIndex

    The cell row column index.

    Declaration
    public RowColumnIndex CellRowColumnIndex { get; }
    Property Value
    Type
    RowColumnIndex

    Range

    A CoveredCellInfo that will receive the resulting range for the covered cell.

    Declaration
    [TraceProperty(true)]
    public CoveredCellInfo Range { get; set; }
    Property Value
    Type
    CoveredCellInfo
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved