alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class CellClickEventArgs

    Provides the information about the cell click action in the Scheduler.

    Inheritance
    object
    CellClickEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Schedule
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class CellClickEventArgs

    Constructors

    CellClickEventArgs()

    Declaration
    public CellClickEventArgs()

    Properties

    Cancel

    Gets or sets whether the cell click action of Scheduler should be canceled or not.

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

    true, if the cell click action is canceled. Otherwise, false.

    EndTime

    Gets the end time of the cell.

    Declaration
    [JsonPropertyName("endTime")]
    public DateTime EndTime { get; set; }
    Property Value
    Type Description
    DateTime

    A DateTime object representing the end time of the cell.

    GroupIndex

    Gets the group index of the cell which helps to get the resource information associated with the cell using GetResourceByIndex(int) method.

    Declaration
    [JsonPropertyName("groupIndex")]
    public int GroupIndex { get; set; }
    Property Value
    Type Description
    int

    Accepts an integer value.

    Remarks

    The GetResourceByIndex(int) method returns the resource information associated with the cell.

    IsAllDay

    Gets whether the clicked cell is all-day or not.

    Declaration
    [JsonPropertyName("isAllDay")]
    public bool IsAllDay { get; set; }
    Property Value
    Type Description
    bool

    true, if the clicked cell is an all-day cell. Otherwise, false.

    MouseEventArgs

    Gets the mouse event informations.

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

    A MouseEventArgs object representing the mouse event information.

    StartTime

    Gets the start time of the cell.

    Declaration
    [JsonPropertyName("startTime")]
    public DateTime StartTime { get; set; }
    Property Value
    Type Description
    DateTime

    A DateTime object representing the start time of the cell.

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