alexa
menu

WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download

    Show / Hide Table of Contents

    Class TreeGridSearchRowInfo

    Represents the search result for a single record.

    Inheritance
    System.Object
    TreeGridSearchRowInfo
    Namespace: Syncfusion.UI.Xaml.TreeGrid
    Assembly: Syncfusion.SfGrid.WPF.dll
    Syntax
    public class TreeGridSearchRowInfo : Object
    Remarks

    TreeGridSearchRowInfo is used by the GetRecords() method to return information about which records contain matches for the search text.

    Constructors

    TreeGridSearchRowInfo(Object)

    Initializes a new instance of the TreeGridSearchRowInfo class.

    Declaration
    public TreeGridSearchRowInfo(object record)
    Parameters
    Type Name Description
    System.Object record

    The data object associated with the matched row.

    Properties

    ColumnCollection

    Gets a collection of columns that match with the search text in the associated data object.

    Declaration
    public List<TreeGridColumn> ColumnCollection { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<TreeGridColumn>

    A System.Collections.Generic.List<T> of TreeGridColumn objects that contain matching text.

    Record

    Gets or sets the data object associated with the cell.

    Declaration
    public object Record { get; set; }
    Property Value
    Type Description
    System.Object

    The data object associated with the matched row.

    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved