Class CurrentItemChangedEventArgs
Provides data for the current item changed event.
Inheritance
Namespace: Telerik.Maui.Controls.SlideView
Assembly: Telerik.Maui.Controls.dll
Syntax
public class CurrentItemChangedEventArgs : EventArgs
Fields
NewIndex
The index of the new current item.
Declaration
public readonly int NewIndex
Field Value
System.Int32
|
NewItem
The new current item.
Declaration
public readonly object NewItem
Field Value
System.Object
|
OldIndex
The index of the previous current item.
Declaration
public readonly int OldIndex
Field Value
System.Int32
|
OldItem
The previous current item.
Declaration
public readonly object OldItem
Field Value
System.Object
|
Methods
Equals(Object)
Determines whether the specified object is equal to the current CurrentItemChangedEventArgs.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The object to compare with the current instance. |
Returns
System.Boolean
|
GetHashCode()
Returns the hash code for this CurrentItemChangedEventArgs.
Declaration
public override int GetHashCode()
Returns
System.Int32
A hash code for the current instance. |
Operators
Equality(CurrentItemChangedEventArgs, CurrentItemChangedEventArgs)
Determines whether two CurrentItemChangedEventArgs instances are equal.
Declaration
public static bool operator ==(CurrentItemChangedEventArgs value1, CurrentItemChangedEventArgs value2)
Parameters
CurrentItemChangedEventArgs
value1
The first instance to compare. |
CurrentItemChangedEventArgs
value2
The second instance to compare. |
Returns
System.Boolean
|
Inequality(CurrentItemChangedEventArgs, CurrentItemChangedEventArgs)
Determines whether two CurrentItemChangedEventArgs instances are not equal.
Declaration
public static bool operator !=(CurrentItemChangedEventArgs value1, CurrentItemChangedEventArgs value2)
Parameters
CurrentItemChangedEventArgs
value1
The first instance to compare. |
CurrentItemChangedEventArgs
value2
The second instance to compare. |
Returns
System.Boolean
|