alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class BeforeAutoFillCellEventArgs<T>

    Provides information about the BeforeAutoFillCell event.

    Inheritance
    object
    BeforeAutoFillCellEventArgs<T>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Grids
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class BeforeAutoFillCellEventArgs<T>
    Type Parameters
    Name Description
    T

    TValue of grid component.

    Constructors

    BeforeAutoFillCellEventArgs()

    Declaration
    public BeforeAutoFillCellEventArgs()

    Properties

    Cancel

    Gets or sets a value indicating whether to cancel the autofill action for a particular cell. You can cancel and handle auto filling.

    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    bool

    The default value is false, If the Cancel property is set to true, then the autofill action in a particular cell. will be cancelled.

    ColumnIndex

    Gets the column index of the cell associated with autofill action.

    Declaration
    public int ColumnIndex { get; }
    Property Value
    Type Description
    int

    An integer representing the column index associated with the autofill action.

    ColumnName

    Gets the column field name of the cell associated with autofill action.

    Declaration
    public string ColumnName { get; }
    Property Value
    Type Description
    string

    A string representing the column field name associated with the autofill action.

    Data

    Gets the row data of the cell associated with autofill action.

    Declaration
    public T Data { get; }
    Property Value
    Type Description
    T

    Row data associated with autofill action.

    RowIndex

    Gets the row index of the cell associated with autofill action.

    Declaration
    public int RowIndex { get; }
    Property Value
    Type Description
    int

    An integer representing the row index associated with the autofill action.

    Value

    Gets or sets the value getting filled in the cell. You can change value using BeforeAutoFillCell event.

    Declaration
    public object Value { get; set; }
    Property Value
    Type Description
    object

    Returns the cell value based on column value type. The default value is null.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved