menu

WinForms

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

    Show / Hide Table of Contents

    Interface IGridRowColSizeDictionary

    Provides the functionality for GridModelRowColSizeIndexer to store row heights and column widths.

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

    Properties

    Item[Int32]

    The row height or column with a given index.

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

    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