alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class GanttKeySettings

    Configures Gantt key settings.

    Inheritance
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    GanttKeySettings
    Implements
    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    Inherited Members
    ComponentBase.Assets
    ComponentBase.AssignedRenderMode
    ComponentBase.BuildRenderTree(RenderTreeBuilder)
    ComponentBase.DispatchExceptionAsync(Exception)
    ComponentBase.InvokeAsync(Action)
    ComponentBase.InvokeAsync(Func<Task>)
    ComponentBase.OnAfterRender(bool)
    ComponentBase.OnAfterRenderAsync(bool)
    ComponentBase.OnInitialized()
    ComponentBase.OnParametersSet()
    ComponentBase.RendererInfo
    ComponentBase.SetParametersAsync(ParameterView)
    ComponentBase.ShouldRender()
    ComponentBase.StateHasChanged()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    OwningComponentBase.Dispose(bool)
    OwningComponentBase.IsDisposed
    OwningComponentBase.ScopedServices
    Namespace: Syncfusion.Blazor.Gantt
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class GanttKeySettings : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
    Remarks

    The properties set to GanttKeySettings will handle the hot key's default action.

    Examples
    <SfGantt @ref="Gantt" DataSource="@GanttData">
    <GanttKeySettings MoveLeftCell="Shift+LeftArrow" MoveRightCell="Tab" MoveUpCell="UpArrow" MoveDownCell=""></GanttKeySettings>
    ........
    </SfGantt>

    Constructors

    GanttKeySettings()

    Declaration
    public GanttKeySettings()

    Properties

    IndentRow

    Gets or sets any hot keys combination for indenting the row.

    • Alt+Shift+RightArrowIndent the row on pressing Alt+Shift+RightArrow keys
    The default value is Alt+Shift+RightArrow.
    Declaration
    [Parameter]
    public string IndentRow { get; set; }
    Property Value
    Type
    string

    MoveDownCell

    Gets or sets any or all of the following hot for the down cell movement.

    • EnterMoves to down cell on pressing Enter key
    • DownArrowMoves to down cell on pressing DownArrow key
    • Shift+DownArrowMoves to down cell on pressing Shift+DownArrow key
    The default value are Enter,DownArrow,Shift+DownArrow.
    Declaration
    [Parameter]
    public string MoveDownCell { get; set; }
    Property Value
    Type
    string

    MoveLeftCell

    Gets or sets any or all of the following hot keys for the left cell movement.

    • Shift+TabMoves to left cell on pressing Shift+Tab key
    • LeftArrowMoves to left cell on pressing LeftArrow key
    • Shift+LeftArrowMoves to left cell on pressing Shift+LeftArrow key
    The default value are Shift+Tab,LeftArrow,Shift+LeftArrow.
    Declaration
    [Parameter]
    public string MoveLeftCell { get; set; }
    Property Value
    Type
    string

    MoveRightCell

    Gets or sets any or all of the following hot keys for the right cell movement.

    • TabMoves to right cell on pressing Tab key
    • RightArrowMoves to right cell on pressing RightArrow key
    • Shift+RightArrowMoves to right cell on pressing Shift+RightArrow key
    The default value are Tab,RightArrow,Shift+RightArrow.
    Declaration
    [Parameter]
    public string MoveRightCell { get; set; }
    Property Value
    Type
    string

    MoveUpCell

    Gets or sets any or all of the following hot keys for the up cell movement.

    • Shift+EnterMoves to top cell on pressing Shit+Enter key
    • UpArrowMoves to top cell on pressing UpArrow key
    • Shift+UpArrowMoves to top cell on pressing Shift+UpArrow key
    The default value are Shift+Enter,UpArrow,Shift+UpArrow.
    Declaration
    [Parameter]
    public string MoveUpCell { get; set; }
    Property Value
    Type
    string

    OutdentRow

    Gets or sets any hot keys combination for outdenting the row.

    • Alt+Shift+LeftArrowIndent the row on pressing Alt+Shift+LeftArrow keys
    The default value is Alt+Shift+LeftArrow.
    Declaration
    [Parameter]
    public string OutdentRow { get; set; }
    Property Value
    Type
    string

    Methods

    OnInitializedAsync()

    Triggers during the initial rendering of the component.

    Declaration
    protected override Task OnInitializedAsync()
    Returns
    Type Description
    Task

    A Task representing the asynchronous operation.

    Overrides
    ComponentBase.OnInitializedAsync()

    OnParametersSetAsync()

    Called by the framework when component parameters have been set. Executes logic that depends on the updated parameter values.

    Declaration
    protected override Task OnParametersSetAsync()
    Returns
    Type
    Task
    Overrides
    ComponentBase.OnParametersSetAsync()

    Implements

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