Class SelectingEventArgs
A class that holds options to control the selecting item action.
Inheritance
System.Object
SelectingEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectingEventArgs : Object
Constructors
SelectingEventArgs()
Declaration
public SelectingEventArgs()
Properties
Cancel
Specifies 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 the content selection is done through swiping or not.
Declaration
public bool IsSwiped { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Returns the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PreviousIndex
Returns the index of the 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 the 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 |
SelectingContent
Returns the selecting Tab item content.
Declaration
public DOM SelectingContent { get; set; }
Property Value
Type | Description |
---|---|
DOM |
SelectingIndex
Returns the index of the selecting Tab item.
Declaration
public int SelectingIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
SelectingItem
Returns the selecting Tab item element.
Declaration
public DOM SelectingItem { get; set; }
Property Value
Type | Description |
---|---|
DOM |