Class SelectEventArgs
Provides information about the selected tab item.
Inheritance
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectEventArgs : Object
Constructors
SelectEventArgs()
Declaration
public SelectEventArgs()
Properties
Cancel
Gets or sets whether the tab item selected action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsInteracted
Gets whether the event is triggered via user interaction or programmatic way.
Declaration
public bool IsInteracted { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsSwiped
Gets whether the content selection is done through swiping or not.
Declaration
public bool IsSwiped { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Name
Gets the name of the event.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
PreventFocus
Gets or sets whether to prevent the focus of tab item or not when it is selected.
Declaration
public bool PreventFocus { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
PreviousIndex
Gets the index of previously selected tab item.
Declaration
public int PreviousIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
SelectedIndex
Gets the index of selected tab item.
Declaration
public int SelectedIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |