Class SelectEventArgs
A class that holds options to control the selected item action.
Inheritance
System.Object
SelectEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectEventArgs : Object
Constructors
SelectEventArgs()
Declaration
public SelectEventArgs()
Properties
Cancel
Specify a value whether to prevent the current action or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsSwiped
Returns a value whether content selection is done through swiping or not.
Declaration
public bool IsSwiped { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Specifies the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PreviousIndex
Returns the index of previous Tab item.
Declaration
public int PreviousIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PreviousItem
Returns the previous Tab item element.
Declaration
public DOM PreviousItem { get; set; }
Property Value
Type | Description |
---|---|
DOM |
SelectedContent
Returns the selected content.
Declaration
public DOM SelectedContent { get; set; }
Property Value
Type | Description |
---|---|
DOM |
SelectedIndex
Returns the index of selected Tab item.
Declaration
public int SelectedIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
SelectedItem
Returns the selected Tab item element.
Declaration
public DOM SelectedItem { get; set; }
Property Value
Type | Description |
---|---|
DOM |