Class GanttKeySettings
Configures Gantt key settings.
Inheritance
System.Object
GanttKeySettings
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class GanttKeySettings : OwningComponentBase
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
Declaration
public string IndentRow { get; set; }
Property Value
Type |
---|
System.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 DowArrow key
- Shift+DownArrowMoves to down cell on pressing Shift+DownArrow key
Declaration
public string MoveDownCell { get; set; }
Property Value
Type |
---|
System.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
Declaration
public string MoveLeftCell { get; set; }
Property Value
Type |
---|
System.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
Declaration
public string MoveRightCell { get; set; }
Property Value
Type |
---|
System.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
Declaration
public string MoveUpCell { get; set; }
Property Value
Type |
---|
System.String |
OutdentRow
Gets or sets any hot keys combination for outdenting the row.
- Alt+Shift+LeftArrowIndent the row on pressing Alt+Shift+LeftArrow keys
Declaration
public string OutdentRow { get; set; }
Property Value
Type |
---|
System.String |
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |