menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Interface IGridRowColHideDictionary - API Reference

    Show / Hide Table of Contents

    Interface IGridRowColHideDictionary

    Provides functionalities for GridModelHideRowColsIndexer to store hidden rows and columns.

    Namespace: Syncfusion.Windows.Forms.Grid
    Assembly: Syncfusion.Grid.Windows.dll
    Syntax
    public interface IGridRowColHideDictionary

    Properties

    Item[Int32]

    The hidden state at a given row or column index.

    Declaration
    bool this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 index
    Property Value
    Type Description
    System.Boolean

    Modified

    Gets a value indicating whether the dictionary was modified.

    Declaration
    bool Modified { get; }
    Property Value
    Type Description
    System.Boolean

    Methods

    InsertItems(Int32, Int32)

    Occurs when rows or columns are inserted.

    Declaration
    void InsertItems(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index

    Row or column index.

    System.Int32 count

    Number of rows or columns.

    MoveItems(Int32, Int32, Int32)

    Occurs when rows or columns are moved.

    Declaration
    void MoveItems(int from, int count, int dest)
    Parameters
    Type Name Description
    System.Int32 from

    First row or column index.

    System.Int32 count

    Number of rows or columns.

    System.Int32 dest

    The Destination.

    RemoveItems(Int32, Int32)

    Occurs when rows or columns are removed.

    Declaration
    void RemoveItems(int from, int count)
    Parameters
    Type Name Description
    System.Int32 from

    First row or column index.

    System.Int32 count

    Number of rows or columns.

    ResetModified()

    Resets the Modified flag.

    Declaration
    void ResetModified()
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved